What do you mean by “Unicode ‘Tags’ symbols”? Do you mean like 👍 is U+1F44D ? So something like 65014dfd-0070-4c2e-858c-5d43694fc98f-image.png being shown like 46e0db8c-ab83-4cbf-9490-f835d7e5e511-image.png ?
if so, that’s an interesting feature request (though I personally doubt it would be implemented, even if you made an official feature request, as described in this FAQ; without following those instructions, I can guarantee it won’t be implemented, because the developer wouldn’t know you wanted it). ‡
As a workaround, I have a script WhatUniChar.py for the PythonScript plugin – if you download it, and follow the instructions in this PythonScript FAQ to install the PythonScript plugin and script, then you can run that script and the statusbar will temporarily change to show you the character information:
e6aee356-8594-4eb5-aaf4-acef1126e308-image.png
(I have that script associated with a keyboard shortcut, so I can just put the caret before the interesting Unicode character, and use that shortcut, and it will tell me what the character is.)
‡: As you might guess from my screenshot, it was actually feasibility for Notepad++ to do this: Notepad++ uses the SCI_SETREPRESENTATION command when making those boxes, so my screenshot was made by using the PythonScript plugin to send editor1.setRepresentation(u'\U0001F44D', 'U+1F44D') to set the representation for just the 👍 character. In theory, you could run a loop in PythonScript to go from U+0080 through U+10FFFF to make all those representations. I just don’t think that the developer would be interested in adding that to the Show All Characters choices (I think similar things have been asked before, and rejected or ignored.)