Make words bold anywhere
Many platforms — social bios, usernames, chat handles — strip out real formatting, so you cannot simply bold a word. Unicode solves this with a Mathematical Bold alphabet: a complete set of bold serif letters and digits that are genuine characters. 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.
Tips and notes
Use bold Unicode for short emphasis — a name, a headline word, a price — rather than whole paragraphs, because screen readers may read the glyphs as math symbols and search engines index them differently from plain letters. If a character shows up as an empty box on an older device, that device’s font lacks the glyph. For a more ornate decorative style, try the Old English Fraktur transformer instead.