HTML Entity for Uppercase H Script (ℋ)

What You'll Learn
How to display the script capital H (ℋ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is part of the Letterlike Symbols block and is widely used in quantum mechanics to denote the Hamiltonian operator. Its official Unicode name is SCRIPT CAPITAL H (U+210B).
Render it with ℋ, ℋ, ℋ, or CSS escape \210B. The named entity ℋ is often the most readable option in HTML source. See also math entities.
⚡ Quick Reference — Uppercase H Script Entity
U+210BLetterlike Symbols
ℋHexadecimal reference
ℋDecimal reference
ℋHamiltonian operator
Name Value
──────────── ──────────
Unicode U+210B
Hex code ℋ
HTML code ℋ
Named entity ℋ
CSS code \210B
Meaning Script capital H (Hamiltonian)
Related U+0048 = plain H; U+210D = ℍ (double-struck H)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the script capital H (ℋ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\210B";
}
</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 script capital H (ℋ) and the named entity ℋ are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the script capital H (ℋ) in mathematical and typographic contexts:
🧠 How It Works
Hexadecimal Code
ℋ uses the Unicode hexadecimal value 210B to display the script capital H. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℋ uses the decimal Unicode value 8459 to display the same character. A common method for Letterlike Symbols.
Named Entity
ℋ is the standard named entity for ℋ—readable in source HTML and refers to the Hamiltonian operator in physics notation.
CSS Entity
\210B 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+210B sits in Letterlike Symbols. Do not confuse with plain H (U+0048) or ℍ (double-struck H, U+210D).
Use Cases
The script capital H (ℋ) is commonly used in:
Hamiltonian operator ℋ in the Schrödinger equation and quantum physics documentation.
Script-style capital H in equations, formulas, and formal mathematical writing.
Scientific documentation and educational materials on quantum systems and energy operators.
Research papers and scholarly publications in physics and mathematical physics.
Elegant script lettering in calligraphy, invitations, and formal design projects.
Physics courses and online tutorials teaching Hamiltonian mechanics and script notation.
Scientific blogs and online textbooks that need proper script H rendering.
💡 Best Practices
Do
- Use
ℋin HTML when possible for readability in physics content - Serve pages as UTF-8; you can also type ℋ directly in UTF-8 source
- Use math-friendly fonts (e.g. Cambria Math, STIX) for reliable script glyph display
- Distinguish ℋ (script H) from plain
H(U+0048) and ℍ (double-struck H) - Pick one entity style (named, hex, or decimal) per project for consistency
Don’t
- Substitute plain
Hwhen ℋ is required for the Hamiltonian operator - Confuse ℋ (script H) with ℍ (double-struck H for quaternions)
- Put CSS escape
\210Bin HTML text nodes - Use padded Unicode notation like U+0210B—the correct value is
U+210B - Use
\0210Bin CSS—the correct escape is\210B
Key Takeaways
Four references render ℋ; named entity is most readable
ℋ ℋ ℋFor CSS stylesheets, use the escape in the content property
\210BUnicode U+210B — SCRIPT CAPITAL H
Essential for Hamiltonian operator notation in quantum mechanics
Previous: Uppercase H Latin (ʜ) Next: Uppercase H Stroke
❓ Frequently Asked Questions
ℋ (named), ℋ (hex), ℋ (decimal), or \210B in CSS content. The named entity ℋ is the most readable for HTML content.U+210B (SCRIPT CAPITAL H). Letterlike Symbols block. Hex 210B, decimal 8459. Commonly used to represent the Hamiltonian operator in quantum mechanics.ℋ or ℋ) or the named entity ℋ is used in HTML content. The CSS entity (\210B) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℋ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — script letters, math symbols, and more.
8 people found this page helpful
