HTML Entity for Uppercase C Black Letter (ℭ)

What You'll Learn
How to display the black-letter capital C (ℭ) in HTML using hexadecimal, decimal, named, and CSS escape methods. This Fraktur-style character is part of the Letterlike Symbols block and is widely used in mathematical notation and typography. Its official Unicode name is BLACK-LETTER CAPITAL C (U+212D).
Render it with ℭ, ℭ, the named entity ℭ, or CSS escape \212D in the content property.
⚡ Quick Reference — Black-Letter Capital C Entity
U+212DLetterlike Symbols
ℭHexadecimal reference
ℭDecimal reference
ℭFraktur C (preferred)
Name Value
──────────── ──────────
Unicode U+212D
Hex code ℭ
HTML code ℭ
Named entity ℭ
CSS code \212D
Meaning Black-letter (Fraktur) capital C
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the black-letter capital C (ℭ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\212D";
}
</style>
</head>
<body>
<p>Symbol (hex): ℭ</p>
<p>Symbol (decimal): ℭ</p>
<p>Symbol (named): ℭ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The black-letter capital C (ℭ) and the named entity ℭ are supported in all modern browsers:
👀 Live Preview
See the black-letter capital C (ℭ) in mathematical and typographic contexts:
ℭ → ℭ🧠 How It Works
Hexadecimal Code
ℭ uses the Unicode hexadecimal value 212D to display the black-letter capital C. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℭ uses the decimal Unicode value 8493 to display the same character. A common method when hex is less convenient.
CSS Entity
\212D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Named Entity
ℭ is the semantic named entity for Fraktur (black-letter) C — the most readable option in mathematical HTML source.
Same visual result
All four methods produce the glyph: ℭ. Unicode U+212D sits in Letterlike Symbols (U+2100–U+214F). Do not confuse with plain C (U+0043) or script ℬ (B). Prefer ℭ in math markup for clarity.
Use Cases
The black-letter capital C (ℭ) is commonly used in:
Fraktur-style symbols in algebra, set theory, and complex analysis (e.g. ℭ for complex numbers).
Black-letter (Fraktur) lettering in mathematical and historical typography.
Research papers, theses, and scholarly content with Fraktur notation.
Physics, mathematics, and science articles using formal Fraktur symbols.
Black-letter typography in publications, logos, and creative design.
Math tutorials and courses explaining Fraktur notation and letterlike symbols.
HTML-based equation editors when MathML or LaTeX is not available.
💡 Best Practices
Do
- Use
ℭfor readable Fraktur C notation in HTML - Pick one style (named, hex, or decimal) per project for consistency
- Use
\212Din CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Letterlike Symbols (e.g. Cambria Math, STIX)
- Consider MathML or LaTeX for complex multi-line equations
Don’t
- Substitute plain
Cwhen ℭ is required for mathematical meaning - Put CSS escape
\212Din HTML text nodes - Use
ℭin CSS (named entities are HTML-only) - Confuse ℭ (black-letter C) with plain
C(U+0043) or Ć (C acute) - Mix entity styles randomly in one file
Key Takeaways
Four references all render ℭ
ℭ ℭ ℭFor CSS stylesheets, use the escape in the content property
\212DUnicode U+212D — BLACK-LETTER CAPITAL C (Letterlike Symbols)
Prefer ℭ in math markup — Fraktur (black-letter) notation
Previous: Uppercase C Acute (Ć) Next: Uppercase C Caron (Č)
❓ Frequently Asked Questions
ℭ (hex), ℭ (decimal), ℭ (named), or \212D in CSS content. All produce ℭ.U+212D (BLACK-LETTER CAPITAL C). Letterlike Symbols block. Hex 212D, decimal 8493. Used in Fraktur mathematical notation and typography.ℭ is the named HTML entity for Fraktur C. Numeric codes (ℭ or ℭ) are direct Unicode references. Both produce ℭ; the named entity is more readable in math content.\212D in the content property of ::before or ::after. Named entities like ℭ work in HTML markup only, not in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, letters, and more.
8 people found this page helpful
