HTML Entity for H Black Letter (ℌ)

What You'll Learn
How to display the black-letter H (ℌ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Unicode officially names this character BLACK-LETTER CAPITAL H (U+210C)—a letterlike symbol used in mathematical notation (e.g. Hilbert space) and blackletter (fraktur) typography. It sits in the Letterlike Symbols block.
Render it with ℌ, ℌ, ℌ, or CSS escape \210C. The named entity ℌ is often the most readable option in HTML source.
⚡ Quick Reference — H Black Letter Entity
U+210CLetterlike Symbols
ℌHexadecimal reference
ℌDecimal reference
ℌMost readable option
Name Value
──────────── ──────────
Unicode U+210C
Hex code ℌ
HTML code ℌ
Named entity ℌ
CSS code \210C
Meaning Black-letter capital H (fraktur H)
Related U+0068 = plain h (Basic Latin)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the black-letter H (ℌ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\210C";
}
</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 H (ℌ) and the named entity ℌ are supported in all modern browsers:
👀 Live Preview
See the black-letter H (ℌ) in mathematical and typographic contexts:
🧠 How It Works
Named Entity
ℌ is the HTML named entity for the black-letter H (fraktur H). It is easy to read and remember for mathematical and typographic content.
Hexadecimal Code
ℌ uses the Unicode hexadecimal value 210C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℌ uses the decimal Unicode value 8460 to display the same character. A common method for Letterlike Symbols.
CSS Entity
\210C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ℌ. Unicode U+210C is BLACK-LETTER CAPITAL H in Letterlike Symbols. Do not confuse ℌ with plain h (U+0068) or ℋ (script H, ℋ).
Use Cases
The black-letter H (ℌ) is commonly used in:
Hilbert space notation and scientific content where fraktur or letterlike symbols are used.
Gothic-style design, historical documents, and decorative blackletter typography.
Papers, textbooks, and documentation using letterlike or fraktur symbols.
Denoting Hilbert space or related concepts in physics and mathematics.
Tutorials explaining mathematical notation or typographic styles.
Proper encoding helps screen readers handle ℌ in scientific text.
Consistent rendering of letterlike symbols across web and print media.
💡 Best Practices
Do
- Use
ℌfor readability when authoring HTML by hand - Serve pages as UTF-8; you can also type ℌ directly in UTF-8 source
- Pick one style (named, hex, or decimal) per project for consistency
- Use fonts that support Letterlike Symbols or mathematical symbols
- Distinguish ℌ (black-letter H) from plain
hand ℋ (script H)
Don’t
- Substitute plain
hwhen ℌ is required for math notation - Confuse ℌ (ℌ) with ℋ (ℋ, script capital H)
- Put CSS escape
\210Cin HTML text nodes - Assume all fonts render Letterlike Symbols identically
- Mix entity styles randomly in one file without reason
Key Takeaways
Four references render ℌ
ℌ ℌFor CSS stylesheets, use the escape in the content property
\210CUnicode U+210C — BLACK-LETTER CAPITAL H
Letterlike Symbols block; used in math and fraktur typography
Previous: Lowercase H Next: Lowercase H Caron
❓ Frequently Asked Questions
ℌ (named), ℌ (hex), ℌ (decimal), or \210C in CSS content. All four methods render ℌ correctly.U+210C (BLACK-LETTER CAPITAL H). Letterlike Symbols block. Hex 210C, decimal 8460. Used in mathematical notation and fraktur typography.ℌ. You can also use ℌ, ℌ, or \210C in CSS content.U+210C, ℌ) is a letterlike symbol—the black-letter (fraktur) form used in mathematics and typography. The regular Latin small letter h (U+0068) is in Basic Latin. They are different Unicode characters with different uses.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
