All guidesGuide

How a Unicode Text Converter Works

Code points, blocks, and mappings — the mechanism behind every copy-paste font tool.

Last updated

A Unicode text converter looks like it changes your font, but what it really does is look up each character you type and replace it with a different character that has a similar shape. Understanding the three ideas behind that — code points, blocks, and mappings — explains both why the tool works everywhere and why a few letters never convert.

See it running on the Unicode text converter, which applies every mapping at once.

Code points: every character has a number

Unicode assigns each character a number called a code point — 'A' is U+0041, the script 'a' 𝒶 is U+1D4B6. Software stores and sends those numbers, and each device draws them using whatever font it has. A converter is just a table that says 'when you see U+0041, output U+1D4B6 instead'.

Blocks: styled alphabets live in ranges

Related characters are grouped into blocks. The Mathematical Alphanumeric Symbols block holds bold, italic, script, fraktur, and double-struck alphabets. Enclosed Alphanumerics holds bubble letters. Superscripts and Subscripts is its own small block. A converter picks the target block for each style.

Mappings: where conversions break

Some blocks were designed for maths or phonetics, not for writing full words, so they're incomplete. The Superscripts and Subscripts block has no form for several capital letters; the small-capitals set is missing a clean 'X'. When there's no target character, a good converter leaves your original letter in place rather than substituting a look-alike from a different script — which is why you sometimes see one normal letter in a styled word.

Why it survives copy-paste

Because the output is genuine characters with real code points, copying it copies the code points, and pasting it pastes them. There's no formatting layer to lose. The only failure modes are an app that filters certain ranges, or a device whose fonts don't include a glyph for that code point — in which case you see a box, sometimes called 'tofu'.

Converter vs font vs image

Installing a font changes how text looks on your device only; other people see their own font. Saving text as an image fixes the look but loses selectability, search, and accessibility. A Unicode converter is the middle path — the styling is in the characters, so it looks the same for everyone and stays real text. Copy and paste fonts covers the practical trade-offs.

FAQ

Frequently asked questions

01What is a Unicode text converter?+

A tool that replaces each letter you type with a similar-looking character from another part of Unicode, producing styled text that copies and pastes without a font install.

02What's a code point?+

The number Unicode assigns to a character. Software works with the number; the font draws it. Converters remap one number to another.

03Why don't all characters convert?+

Some Unicode blocks are incomplete because they were built for maths or phonetics. When a style has no character for a given letter, the converter leaves the original letter alone.

04What does it mean when I see a box instead of a letter?+

The device's fonts have no glyph for that code point, so it draws a placeholder box, informally called 'tofu'. The character is still there in the data.

05Is a Unicode converter the same as a font generator?+

Yes. 'Font generator', 'text generator', and 'Unicode converter' all name the same substitution tool.