Text Analysis

Type in the text box below to see the Unicode breakdown of the text.


Output:

Glyph Generator

Enter a valid hexadecimal codepoint below and click Generate, the output will be displayed in the box to the right.

Interesting Unicode Codepoints

GlyphCodeNameDescription
U+202ERight-to-left overrideReverses the order of characters like so: 'gnp.exe' to ‮'gnp.exe'
U+FDFDBasmalaIslamic phrase, really big unicode character, breaks many text inputs because of its size
U+200DZero width joinerJoins two or more characters in a sequence to make a new emoji. Man + ZWJ + White hair = 👨‍🦳
U+200BZero-width spaceUsed to separate words in languages with no explicit spacing

How to Copy the Glyphs

  1. Focus the input box of the codepoint you want
  2. Select all (Ctrl+A or +A)
  3. Copy (Ctrl+C or +C)

Using a Script to Enter Unicode

An easy method to enter special characters is by using an AutoHotkey script. You can use the Send command with codepoint literals like so:

CapsLock &  \::Send {U+0300}

The above allows you to use caps-lock+backslash as a hotkey to send a combining grave accent (attaches to the previous character). I use a series of hotkeys to more easily type accents and symbols, you can check that out at this repository.

See also