java - Find all non unicode characters in file - Stack Overflow
How do you write a character not present in unicode?
Unable to copy unprintable unicode characters into the code editor - Meta Stack Exchange
Font for representing Unicode non‐printable characters - Graphic Design Stack Exchange
Try using Paste Special; there should be an option for Unicode text.
Note that if the source document was created with a Symbol font, this won't help. Windows doesn't really know that the character is related to a specific Unicode character, the symbol fonts were created before Unicode as a way of meeting a need and the two aren't interchangeable.
A lengthy process but I normally convert such files into images and then process those images through any OCR software. That helps. But, I was myself searching for an even better option.
Hello, I'm working on research about Jersey Dutch. It uses a lot of diacritics and symbols for its letters which are important for proununciation. I found out that a 'g' +'´' doesn't work in unicode, it should be "". How would you write said character?
In addition to DrZoo's answer, there is a second possibility of where the error comes from: Your curent font does not have a glyph for the fox. Especially since Emojis are new-ish and low on the priority of font-makers, it is quite likely that your font simply cannot provide a symbol, in which case notepad++ defaults to the square you see.
Check what font you have and then verify that it indeed has emojis, or switch to a font known for having them. One of these would be "consolas", which is used here on stackexchange (and given that you do have the fox in your post, we know that it includes the symbol you need)
While my fox is grey, instead of red, it works for me. I don't have anything special installed. The only setting that I can think that may be different is Encoding -> UTF-8
Check to see if your setting is set to UTF-8 instead of ANSI?

MISC. Settings
New Document Settings
We strip out non-printable characters except for TAB, CR, and LF.
I can see how this could be a problem for a few cases, but these cases are fairly rare, so I believe those questions/answers can still be posted but with non-printable characters explicitly replaced with other symbols for the sake of readability.
You're missing a question in your text, so I assume you want to paste unreadable code into the editor, but I'm curious why we'd want to support being able to paste in code that others won't be able to read?
The primary purpose of Stack Overflow is to help debug code and teach others how to avoid the bugs. Looking at the display of the editor you linked to doesn't reveal anything useful that someone could learn from; the code in question is still unreadable.
Questions asked have a life beyond the initial solving of the OPs question, they are answers to similar problems others might encounter in the future. If a question can't serve those two purposes I don't see a need for the question to exist.
To me this is a rare corner-case (ab)use of the editor that doesn't need to be addressed because it doesn't further the mission of the site. IF the problem were to significantly impact the usability of the editor for normal programming code then it'd definitely need to be addressed.
While searching for something entirely different in the Arial MS Unicode glyph set in Adobe InDesign, I came across this section:

This shows that there is a dedicated set of Unicode Code points for the control characters, and indeed looking it up on Unicode.org you can find them in code block U+2400.
This gives you a Unicode code point to look for in a font's list of supported glyphs. FileFormat.info lists, amongst others: Arial Unicode MS, Code2000, and Segoe UI Symbol. Unfortunately, none of the fonts listed have the dotted outline of your example.
If you don't mind using Flash, it seems FileFormat can check your local font set, and so determine if the symbols indeed do come ready and all out of one of your locally installed fonts, or possibly from somewhere else.
I need a good font for representing control characters. ... it seems they don’t exist in the ɢɴᴜ unifont
No, they do. GNU Unifont has complete coverage as seen in Glyph Mini:

fileformat.info is a good resource; according to it, control character #003 (ETX) is supported by the following fonts: https://www.fileformat.info/info/unicode/char/0003/fontsupport.htm — Unifont is among them.
The control characters, in their nature are invisible, they were not meant to be shown as visible characters. If you are designing a specialty tool like text cleaner web app for example, where you want control characters to be visible, I believe Unifont is a good font for that.
When you say:
.. I couldn’t found one which is able to select the whole symbols.
Actually you can select the whole symbols, maybe they will not be displayed properly, but if you have a text input form field with invisible characters and single-click its area, then CMD/CTRL + A select all, you will be able to copy input contents into the clipboard.
For example, you can copy ETX #003 from here: https://www.fileformat.info/info/unicode/char/0003/browsertest.htm, then you can inspect the contents by pasting here: https://apps.timwhitlock.info/unicode/inspect?s=%03

Again, the code editor is a challenge but it's not the font, it's the software you use the control character to select it that's the problem... For example, same ETX, when pasted into Sublime Text 3 is rendered as the sequence of characters <0x03> and you can copy-paste it as ETX. Atom shows it invisible but you can get plugin to alert you about the presence of invisibles, https://atom.io/packages/highlight-bad-chars
Generally speaking, Sublime Text 3 is the best to deal with control character operations: preview, copy and paste.

