List each Unicode code point with its hexadecimal label, UTF-8 bytes, index, and a deliberately small display classification.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
JavaScript string iteration visits code points, TextEncoder produces RFC 3629 UTF-8 bytes, and a separate length field counts UTF-16 units. Hidden controls, U+FEFF, and U+200B print as U+ labels, while the type column covers selected ranges rather than the full Unicode property database.
ABC
=== Text Inspector === String length (UTF-16 units): 3 Code points: 3 UTF-8 byte length: 3 Idx | Char | Code Point | UTF-8 Bytes | Type ----|------|------------------|------------------|---- 0 | A | U+0041 | 41 | Uppercase Letter 1 | B | U+0042 | 42 | Uppercase Letter 2 | C | U+0043 | 43 | Uppercase Letter
Developers find zero-width spaces in identifiers, encoding lessons compare UTF-16 with UTF-8, and cleaning investigations locate C0 or C1 controls.