<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Chris Xhangrei</title>
    <description>The latest articles on DEV Community by Chris Xhangrei (@chris_xhangrei_72df64ab94).</description>
    <link>https://dev.to/chris_xhangrei_72df64ab94</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3988998%2F5f538e06-d1b4-4a12-a3dc-e186b730f820.png</url>
      <title>DEV Community: Chris Xhangrei</title>
      <link>https://dev.to/chris_xhangrei_72df64ab94</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/chris_xhangrei_72df64ab94"/>
    <language>en</language>
    <item>
      <title>Nobody Told Me Unicode Was This Weird — So I Built a Font Generator</title>
      <dc:creator>Chris Xhangrei</dc:creator>
      <pubDate>Wed, 17 Jun 2026 11:55:14 +0000</pubDate>
      <link>https://dev.to/chris_xhangrei_72df64ab94/nobody-told-me-unicode-was-this-weird-so-i-built-a-font-generator-2e4b</link>
      <guid>https://dev.to/chris_xhangrei_72df64ab94/nobody-told-me-unicode-was-this-weird-so-i-built-a-font-generator-2e4b</guid>
      <description>&lt;p&gt;Someone in a Discord server changed their username to something that looked like a different alphabet, except it wasn't. I copied it into a random site, pasted my own name, and it came back looking like 𝔠𝔥𝔯𝔦𝔰. Sent it to a friend. He asked how I did that. I had no idea.&lt;/p&gt;

&lt;p&gt;That should have been the end of it. I pasted the text, it worked, move on. But the question stayed: Discord doesn't support custom fonts. Nobody downloaded a plugin. The text just showed up different on everyone's screen. How?&lt;/p&gt;

&lt;p&gt;The answer broke my brain a little. These are not fonts. 𝔠 is not the letter c. It looks like c. It has the same phonetic role in that word. But to the computer, it is a completely separate character — its own entry in a database of every symbol that computers are supposed to represent. The font generator doesn't load a different typeface. It finds a character that looks like the letter you typed and swaps it in. Your device's default font renders that character. That's it. The "font" was always your own system.&lt;/p&gt;

&lt;p&gt;I had to sit with that for a minute.&lt;/p&gt;

&lt;p&gt;Unicode is the system that assigns every character a code point — a number that tells the computer what to display. There are over 149,000 characters in the standard. One organization, the Unicode Consortium, maintains the whole thing. They review proposals, vote on additions, publish a new version roughly every year. Emoji go through this same process. The face-with-tears-of-joy emoji has an official code point, a proposal document, and a ratification date. So does the cuneiform sign for ox.&lt;/p&gt;

&lt;p&gt;Where the "font styles" actually come from is the weird part. That bold text people use on Instagram and LinkedIn — 𝐁𝐨𝐥𝐝 𝐥𝐢𝐤𝐞 𝐭𝐡𝐢𝐬 — those characters live in a block called Mathematical Alphanumeric Symbols. They were added so that math papers could distinguish between variable types in digital documents. Researchers needed a way to write a vector 𝒗 differently from a scalar v in the same document, without relying on a renderer to apply formatting. So they got their own code points. The internet found those code points and decided they looked cool for bios.&lt;/p&gt;

&lt;p&gt;The rune situation is even better. Elder Futhark runes are in Unicode. The proposal came from historical linguists doing serious work on early Germanic inscriptions. The Consortium approved them. They are now used to write PUBG usernames. Nobody in those proposal meetings saw that coming.&lt;/p&gt;

&lt;p&gt;There's a whole separate problem with characters that don't show up. Unicode has 149,000+ entries, but your device's font only has so many of them mapped. If a character exists in the standard but your font doesn't have a glyph for it, you get a box. Or nothing. What renders on iOS is not guaranteed to render on Android, and neither is guaranteed to work in a specific game client. Discord has broader coverage than WhatsApp. A PUBG client has whatever the developer bundled. No published list exists of what works where. Players figure it out by pasting things in and checking, which is honestly the only way to know.&lt;/p&gt;

&lt;p&gt;I started building the tool because I couldn't find one that didn't look like it was made in 2008. Static site, no backend, all the conversion runs in the browser. 168 styles total. I thought mapping the character ranges would take an afternoon. It did not. Some ranges have gaps — code points that exist but don't have a clean visual equivalent, so a character drops out mid-word, which looks broken. Other ranges work fine in isolation but behave strangely when mixed. I spent more time on edge cases than on anything else in the build.&lt;/p&gt;

&lt;p&gt;If you want to see what 168 Unicode styles looks like in one place, it's at &lt;a href="https://aifontsgenerator.com" rel="noopener noreferrer"&gt;aifontsgenerator.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The thing I keep circling back to is the Consortium itself. These are people who built a standard for encoding the world's languages — historical scripts, mathematical notation, scientific symbols. Serious work, dense documentation. And somewhere in there, the internet turned their character database into an aesthetic toolkit. Zalgo text — that corrupted glitchy horror thing from creepypasta — uses combining characters that were added for languages where diacritical marks stack above and below letters. A legitimate linguistic feature, used for stacking fifty marks on a single e until it looks haunted.&lt;/p&gt;

&lt;p&gt;That's a real sentence. I'm still not sure what to do with it.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
