What gothic letters actually are
They are not a font. When you copy a gothic letter from this page you are not taking a typeface with you โ you are taking a distinct Unicode character, with its own code point, that happens to look like the Latin letter drawn in Fraktur style.
They live in the Mathematical Alphanumeric Symbols block (U+1D400โU+1D7FF), which Unicode created so mathematicians could distinguish a bold variable from an italic one without relying on formatting. Decorating an Instagram bio is a side effect.
That origin explains the two things people ask about most: why empty boxes sometimes appear (the system you pasted into has no glyphs for these code points) and why gothic numbers do not exist (mathematicians did not need them, so Unicode never encoded them).
The holes in the gothic block
The block is not contiguous. Five gothic capitals โ C, H, I, R and Z โ already existed in an earlier block, Letterlike Symbols, so Unicode left their slots reserved rather than encoding them twice.
A generator that simply adds a fixed offset to each letterโs code point lands in those holes and emits characters that do not exist, which render as boxes. This tool substitutes the correct ones:
| Letter | Naive | Correct |
|---|---|---|
| C | โฏ | โญ |
| H | โฏ | โ |
| I | โฏ | โ |
| R | โฏ | โ |
| Z | โฏ | โจ |
The bold blackletter range is contiguous and has no such gaps, which is part of why it renders reliably on more devices.
Accents and diacritics
Unicode has no precomposed โgothic รฉโ. Preserving the accent means splitting the
letter from its mark: รฉ decomposes into e plus a combining acute, only the
e is swapped for its gothic counterpart, and the accent is stacked back on
top.
That is why quiรฉn here gives ๐๐๐๐ฬ๐ with the accent intact โ and the same
approach handles รฑ, รผ and the rest.
Where it renders and where it does not
It looks right on most modern phones and in the common social apps. Where it tends to fail is on older systems, in some desktop mail clients, and in terminals.
One practical habit: before putting it somewhere that matters, send yourself the text through the platform you plan to use it on and look at it there.
When not to use it
Screen readers do not treat these as ordinary letters. They spell them out one by one or skip them entirely, so someone using one may get nothing intelligible from what you wrote.
Keep it for short decorative flourishes. Avoid it in your real name, in long-form text, in buttons, and anywhere accessibility matters.