惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
B
Blog RSS Feed
博客园_首页
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
D
Docker
Blog — PlanetScale
Blog — PlanetScale
M
MIT News - Artificial intelligence
C
Check Point Blog
The Cloudflare Blog
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
量子位
The GitHub Blog
The GitHub Blog
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
T
The Blog of Author Tim Ferriss
博客园 - 【当耐特】
Vercel News
Vercel News
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Nobody Told Me Unicode Was This Weird — So I Built a Font...
Chris Xhangrei · 2026-06-17 · via DEV Community

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.

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?

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.

I had to sit with that for a minute.

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.

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.

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.

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.

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.

If you want to see what 168 Unicode styles looks like in one place, it's at aifontsgenerator.com.

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.

That's a real sentence. I'm still not sure what to do with it.