Tested tool guide
Tested browser tools
Checked August 16, 2026
What Unicode Character Lookup does, with a checked example
Unicode gives every character three separate identities: a code point like U+03A9, a formal name like GREEK CAPITAL LETTER OMEGA, and a glyph. This tool accepts any one of them - a name fragment, a hex code point, or a block name - and returns the matching records: the rendered character, its official name, its block, and the byte sequences it produces in UTF-8 and UTF-16, each with one-click copy. What most users get wrong: the glyph is not the identity. Visually identical characters such as OMEGA (U+03A9) and OHM SIGN (U+2126) are distinct code points, and only the name or the code point tells them apart.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
Ω | GREEK CAPITAL LETTER OMEGA | U+03A9 | Block: Greek and Coptic | UTF-8: CE A9 | UTF-16BE: 03 A9
U+03A9 is the Greek capital omega. Because 0x03A9 (937) falls in the two-byte UTF-8 range (U+0080 to U+07FF), its bytes are 11001110 10101001, written CE A9. UTF-16 stores the code point directly as one 16-bit unit, 03 A9 in big-endian order.