Unicode Inspector

See every character in your text, including invisible ones, with codepoints and risk warnings.

Input

Every character is analysed in your browser.

Output

Character-by-character breakdown
CharCodeNameNote
HU+0048Uppercase letter
eU+0065Lowercase letter
lU+006CLowercase letter
lU+006CLowercase letter
oU+006FLowercase letter
U+200BU+200BZERO WIDTH SPACECompletely invisible. Commonly used to hide messages or watermark text.
U+0020U+0020Separator
wU+0077Lowercase letter
oU+006FLowercase letter
rU+0072Lowercase letter
lU+006CLowercase letter
dU+0064Lowercase letter
U+FEFFU+FEFFZERO WIDTH NO-BREAK SPACE (BOM)Invisible. A byte-order mark inside text usually arrives by accident — or hides data.
U+0020U+0020Separator
U+2014Punctuation
U+0020U+0020Separator
nU+006ELowercase letter
oU+006FLowercase letter
rU+0072Lowercase letter
mU+006DLowercase letter
aU+0061Lowercase letter
lU+006CLowercase letter
U+0020U+0020Separator
tU+0074Lowercase letter
eU+0065Lowercase letter
xU+0078Lowercase letter
tU+0074Lowercase letter
U+0020U+0020Separator
cU+0063Lowercase letter
aU+0061Lowercase letter
nU+006ELowercase letter
U+0020U+0020Separator
hU+0068Lowercase letter
iU+0069Lowercase letter
dU+0064Lowercase letter
eU+0065Lowercase letter
U+0020U+0020Separator
tU+0074Lowercase letter
hU+0068Lowercase letter
iU+0069Lowercase letter
nU+006ELowercase letter
gU+0067Lowercase letter
sU+0073Lowercase letter
.U+002EPunctuation
Characters
44
Codepoints
44
Bytes
50
Words
8
Invisible
2

What this tool does

The Unicode Inspector breaks text into its individual characters and shows you what each one really is: its codepoint, its name, and whether it belongs there. Invisible characters that render as nothing on screen are listed explicitly, so text can no longer lie to you about its contents.

Reading the results

  • Safe — an ordinary visible character doing an ordinary job.
  • Notice — unusual but often legitimate. A non-breaking space from a web page, or the joiner holding an emoji family together.
  • Risk — invisible or deceptive, and rarely present by accident. Zero-width spaces, bidirectional overrides, and stray byte-order marks land here.

Why invisible characters end up in text

Most arrive by accident. Copying from a web page, a PDF, or a word processor drags along non-breaking spaces, soft hyphens, and byte-order marks. They look identical to normal text but break exact matching, search, and code in ways that are maddening to debug precisely because you cannot see the cause.

Some are deliberate. Zero-width characters can carry a hidden message or a watermark that identifies which copy of a document leaked — see Invisible Textfor how that works.

A few are hostile. The right-to-left override U+202E visually reverses the text that follows it, which is how a file named exe.txt can appear as something harmless. The same trick, known as Trojan Source, can make source code read differently to a reviewer than it does to a compiler.

Graphemes versus codepoints

The inspector reports both, and the gap between them is often the interesting part. A family emoji like 👨‍👩‍👧 is one character to a reader, but several codepoints joined by invisible glue. When a text field rejects your input for being too long while looking short, this is usually why.

What to do next

Found something you did not expect? The Unicode Cleanerstrips invisible characters and normalises the text back to something predictable.

FAQ

What does the Unicode Inspector show me?

It breaks your text into individual characters and shows each one with its Unicode codepoint, its official name, and whether it is safe, worth noticing, or a risk. Invisible characters that show nothing on screen are listed explicitly, so you can see exactly what a piece of text contains.

Why would text contain invisible characters?

Sometimes by accident: copying from a web page or word processor can bring along non-breaking spaces, soft hyphens, or a byte-order mark. Sometimes on purpose: zero-width characters are used to watermark documents, hide messages, or trace who leaked a file. Occasionally maliciously, as in right-to-left override attacks that make a filename look harmless.

What does the risk level mean?

Safe means an ordinary visible character. Notice means something unusual but often legitimate, such as a non-breaking space or an emoji joiner. Risk means a character that is invisible or deceptive and rarely appears in normal text by accident, such as a zero-width space or a bidirectional override.

Is my text uploaded anywhere?

No. The inspector runs entirely in your browser. Nothing is sent to a server, logged, or stored, and the tool works offline.

What is a codepoint?

A codepoint is the number Unicode assigns to a character, written like U+200B. It identifies the character precisely, which matters because many characters look identical on screen but are completely different to a computer.