Make words bold anywhere, including plain-text fields
Many platforms — social bios, usernames, chat handles, LinkedIn headlines — strip out real formatting, so you cannot simply apply bold with Ctrl+B. Unicode solves this with a Mathematical Bold alphabet: a complete set of bold serif letters and digits that are genuine characters rather than formatting codes. This tool maps your text onto that block so the bold styling travels with the text wherever you paste it.
How it works
The Mathematical Bold block lays out letters and digits in order, so each character is found by adding an offset to a base code point:
bold capital = 0x1D400 + (letter - "A")
bold small = 0x1D41A + (letter - "a")
bold digit = 0x1D7CE + (digit - "0")
Anything outside A–Z, a–z, and 0–9 — spaces, punctuation, symbols — is passed through untouched because the block does not define bold variants for those. The output is therefore a mix of bold glyphs for letters and digits and your original characters for everything else.
What it looks like in practice
Plain text Hello World becomes 𝐇𝐞𝐥𝐥𝐨 𝐖𝐨𝐫𝐥𝐝 — visually bold, but stored
as real Unicode characters. The letters are from the Mathematical Alphanumeric
Symbols block, which was originally designed for mathematical typesetting but
works anywhere Unicode text is accepted.
The character 𝐀 (U+1D400) corresponds to a bold capital A; 𝐳 (U+1D433)
is a bold lowercase z. Because they are distinct code points, copying and
pasting them into Instagram, Twitter, LinkedIn, or Discord preserves the weight.
Where to use it (and where not to)
Good uses
- Instagram or Twitter bios where you want a name or key phrase to stand out
- LinkedIn headlines where the platform offers no bold option
- Discord server names or nicknames that need visual separation
- YouTube video descriptions with a chapter title you want to emphasise
Avoid for
- Body copy or long paragraphs: screen readers may announce these characters as mathematical symbols, creating a poor experience for users who rely on assistive technology
- SEO-critical content: search engines may not index Mathematical Bold characters the same way they index their plain counterparts, so use real HTML formatting for anything you want ranked
Tips and notes
If a character shows as an empty box on an older device, that device’s system font lacks the Mathematical Bold glyph. Modern Android, iOS, Windows, and macOS all include it in their emoji or Unicode fonts.
For more decorative styles — italic, script, or Fraktur — check the related tools linked below. For maximum compatibility in contexts where even Unicode characters may not render correctly, plain bold HTML or Markdown remains the safest option.