Blackboard-bold text for math and style
This tool converts text into the Unicode Mathematical Double-Struck block — the blackboard-bold style mathematicians use for number sets like ℝ, ℕ and ℤ. It also doubles as eye-catching styled text that survives copy-paste because each glyph is a real code point.
How it works
Most of the block is contiguous: uppercase A at U+1D538, lowercase a at U+1D552, and digit 0 at U+1D7D8. Each character is mapped by offset. The catch is that seven capitals — C, H, N, P, Q, R, Z — have unassigned math code points because they were already encoded in the Letterlike Symbols block. The tool overrides those with the existing symbols:
C → ℂ H → ℍ N → ℕ P → ℙ
Q → ℚ R → ℝ Z → ℤ
Everything else uses the simple offset formula base + (codePointOf(ch) - codePointOf(firstInClass)).
Tips and notes
- Type
R N Z Q Cto get the classic number-set symbols instantly. - The seven “famous” capitals display on nearly every device; rarer lowercase letters need a fuller font.
- Use it for math notes and decorative headings, but not for required form fields or screen-reader-critical text.