Regex Tester & Explainer
Test and debug regular expressions with live matching, syntax highlighting, pattern explanation, and common regex examples. Supports all JavaScript regex flags
Inspect any Unicode character or code point and get its UTF-8, UTF-16, HTML entity, and JS escape instantly and free, right in your browser.
The Unicode Character Lookup breaks any text down character by character and reveals the full encoding for each one: the U+XXXX code point, the decimal value, the UTF-8 bytes in hex, the UTF-16 code units, the HTML entity, and the JavaScript escape. You can also go the other way and type a code point to see exactly which character it produces and how to embed it anywhere.
Everything runs locally in your browser, so even emoji, accented letters, and characters made from surrogate pairs are decoded correctly using codePointAt, String.fromCodePoint, and TextEncoder. Nothing you paste is uploaded or stored.
U+ value, decimal, name, UTF-8 bytes, UTF-16 units, HTML entity, and JS escape.U+2211, 0x2211, plain decimal, or an &#x...; entity to see the character and every encoding for it.A code point is the unique number Unicode assigns to a character, written as U+ followed by four to six hexadecimal digits. For example, the summation sign ∑ is U+2211 and the grinning face 😀 is U+1F600. The code point is abstract: it says which character you mean, but not how the bytes are laid out in a file. That layout is decided by an encoding such as UTF-8 or UTF-16, which is why the same character can have several byte representations.
UTF-8 stores each code point as one to four bytes and keeps plain ASCII as a single byte, which is why it dominates the web. UTF-16 uses one 16-bit unit for common characters and a surrogate pair of two units for anything above U+FFFF, which is how JavaScript strings represent most emoji internally. This tool shows all three side by side so you can see, for instance, that one emoji is a single code point but two UTF-16 units and four UTF-8 bytes. If you want to watch raw bytes turn into ones and zeros, a Text to Binary Converter spells out each byte in binary, and a Number Base Converter re-expresses a code point in binary, octal, decimal, or hexadecimal.
This lookup is for understanding and encoding single characters. If your goal is specifically to convert reserved characters like <, >, and & into named or numeric references for markup, an HTML Entity Converter handles whole strings in both directions. To turn text into a compact, human-readable transport string instead of raw byte values, reach for a Base32 Encoder & Decoder. And when you want to restyle letters into bold, italic, or circled Unicode variants for social bios, a Fancy Text Generator maps ordinary characters onto their decorative code points for you.
A character is the thing you see, while a code point is the number Unicode gives it, written like U+2211. Some visible characters, such as flag emoji or accented letters with combining marks, are actually made of several code points joined together.
It iterates the text by code point rather than by UTF-16 unit, so an emoji above U+FFFF is treated as one character. The table still shows its two UTF-16 surrogate units and its four UTF-8 bytes so you can see how it is stored.
You can type U+1F600, hexadecimal like 0x1F600, a plain decimal number such as 128512, a JavaScript escape like \u2211, or an HTML entity such as ∑. The tool parses all of these and shows the matching character.
The HTML entity, such as ∑, lets you place a character in HTML by its number, which is handy when your editor cannot type it. The JS escape, such as \u2211, does the same inside JavaScript strings and source code.
Control characters and zero-width characters have no visible shape, so the tool displays a placeholder box while still reporting their real code point and encodings. This makes invisible characters that sneak into text easy to spot.
No. All analysis and code point lookup happens locally in your browser with JavaScript. Nothing you paste is uploaded, logged, or stored, and the tool keeps working even after you go offline.