HTML Entity for Black Letter Capital Z (ℨ)

What You'll Learn
How to display the Black Letter Capital Z (ℨ) in HTML using various entity methods. This character is U+2128 in the Letterlike Symbols block (U+2100–U+214F), approved in Unicode 1.1 (1993). It is the Fraktur or black-letter variant of Latin capital Z—used in mathematical notation (for example Lie algebras) and in gothic or black-letter typography.
Unlike many symbols in this series, ℨ has a named HTML entity: ℨ (“Z Fraktur”). You can also use ℨ, ℨ, or \2128 in CSS content. All four methods render the same glyph in modern browsers.
⚡ Quick Reference — Black Letter Capital Z Entity
U+2128Letterlike Symbols (U+2100–U+214F)
ℨHexadecimal reference
ℨDecimal reference
ℨMost readable option
Name Value
──────────── ──────────
Unicode U+2128
Hex code ℨ
HTML code ℨ
Named entity ℨ
CSS code \2128Complete HTML Example
This example shows ℨ using hexadecimal and decimal references, the named entity ℨ, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2128";
}
</style>
</head>
<body>
<p>Black Letter Capital Z using Hexa Decimal: ℨ</p>
<p>Black Letter Capital Z using HTML Code: ℨ</p>
<p>Black Letter Capital Z using HTML Entity: ℨ</p>
<p id="point">Black Letter Capital Z using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2128 and ℨ are widely supported in modern browsers; Fraktur glyphs vary by typeface:
👀 Live Preview
See ℨ at different sizes and beside related letterlike symbols (font-dependent):
🧠 How It Works
Hexadecimal Code
ℨ uses the Unicode hexadecimal value 2128 to display the Black Letter Capital Z symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℨ uses the decimal Unicode value 8488 to display the same character. This is one of the most commonly used methods.
CSS Entity
\2128 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Named Entity
ℨ is the semantic named entity (“Z Fraktur”) — the easiest to read in source HTML.
Same visual result
All four methods produce ℨ. Unicode U+2128 is BLACK LETTER CAPITAL Z in the Letterlike Symbols block (U+2100–U+214F).
Use Cases
The Black Letter Capital Z (ℨ) is commonly used for:
Lie algebras, set theory, and academic math where Fraktur letters denote special sets.
Fraktur or gothic typography, headlines, and vintage aesthetics.
Company names, product labels, and distinctive logo treatments.
Mathematical papers, textbooks, and scholarly documents using letterlike symbols.
Decorative headings, invitations, and creative layouts with Fraktur style.
Alongside ℕ ℚ ℝ ℤ for consistent mathematical typography.
Pair ℨ with MathML or ARIA labels for screen readers in mathematical content.
💡 Best Practices
Do
- Prefer
ℨwhen readability matters in source markup - Use hex or decimal when consistency with other numeric entities is needed
- Choose fonts that support the Letterlike Symbols block (U+2100–U+214F)
- Use
\2128only inside CSScontent, not in HTML text nodes - Pair Fraktur glyphs with plain-language labels in educational content
Don’t
- Confuse ℨ (U+2128) with ordinary Latin Z or other Fraktur letters
- Mix entity styles randomly in one codebase
- Use CSS escape
\2128inside HTML text nodes - Assume every font renders Fraktur crisply at small sizes
- Rely on ℨ alone without context in critical mathematical UI
Key Takeaways
Four equivalent references render ℨ
ℨ ℨ ℨCSS content escape
\2128U+2128 is Fraktur capital Z; Letterlike Symbols are U+2100–U+214F
ℨ is the most readable named entity for this character
Pair mathematical glyphs with text, MathML, or ARIA when meaning must be clear
❓ Frequently Asked Questions
ℨ (hex), ℨ (decimal), ℨ (named), or \2128 in CSS content. All produce ℨ.U+2128 (hex 2128, decimal 8488). Letterlike Symbols (U+2100–U+214F). Unicode name BLACK LETTER CAPITAL Z.ℨ or ℨ) go directly in markup. The CSS escape \2128 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.ℨ, ℨ, and ℨ are equivalent in modern browsers and all render ℨ.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
