HTML Entity for Planck Constant (ℎ)

What You'll Learn
How to display the Planck constant symbol (ℎ) in HTML using various entity methods. This character represents h in physics notation—Planck’s constant—and is essential for quantum mechanics, physics articles, and scientific documentation.
This character is part of the Letterlike Symbols Unicode block and can be rendered with a hexadecimal reference, a decimal reference, the named entity ℎ, or a CSS escape in the content property. Do not confuse ℎ with U+210F (ℏ, reduced Planck constant h-bar) or ordinary Latin h (U+0068).
⚡ Quick Reference — Planck Constant Entity
U+210ELetterlike Symbols block
ℎHexadecimal reference
ℎDecimal reference
ℎMost readable option
Name Value
──────────── ──────────
Unicode U+210E
Hex code ℎ
HTML code ℎ
Named entity ℎ
CSS code \210E
Meaning Planck constant (h)
Related U+210F = Planck constant over two pi (ℏ)
U+0068 = Latin small letter h (h)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing ℎ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\210E";
}
</style>
</head>
<body>
<p>Planck constant (hex): ℎ</p>
<p>Planck constant (decimal): ℎ</p>
<p>Planck constant (named): ℎ</p>
<p id="point">Planck constant (CSS): </p>
</body>
</html>🌐 Browser Support
The Planck constant entity is universally supported in all modern browsers:
👀 Live Preview
See the Planck constant symbol rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
ℎ uses the Unicode hexadecimal value 210E to display the Planck constant symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℎ uses the decimal Unicode value 8462 to display the same character. This is one of the most commonly used methods.
CSS Entity
\210E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Named Entity
ℎ is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option for Planck’s constant h.
Same visual result
All four methods produce the Planck constant glyph: ℎ. Unicode U+210E sits in the Letterlike Symbols block (U+2100–U+214F). For h-bar use U+210F (ℏ).
Use Cases
The Planck constant symbol (ℎ) commonly appears in the following scenarios:
Quantum mechanics articles referencing Planck’s constant h.
Academic publications, preprints, and physics journals on the web.
Physics textbooks, lecture notes, and online courses for students.
Popular science articles explaining energy quanta and photon energy E = hf.
Unicode and HTML entity guides for physics symbols.
Scientific software documentation and physics simulation guides.
Pair ℎ with “Planck’s constant” or “h” on first use in educational content.
💡 Best Practices
Do
- Use
ℎfor readable physics markup - Distinguish ℎ (h) from ℏ (h-bar) in quantum content
- Pick one style (hex / decimal / named) per project
- Use MathML or LaTeX for complex multi-line equations when appropriate
- Test the glyph across browsers and scientific fonts
Don’t
- Confuse ℎ (Planck constant h) with ℏ (reduced constant, h-bar)
- Use
ℏfor h—that entity is for U+210F (ℏ) - Substitute ordinary Latin
hwhen semantic Planck notation is required - Use CSS escape
\210Einside HTML text nodes - Use HTML entities in JS (use
\u210Einstead)
Key Takeaways
Three HTML references all render ℎ
ℎ ℎ ℎFor CSS stylesheets, use the escape in the content property
\210EUnicode U+210E belongs to the Letterlike Symbols block (U+2100–U+214F)
For h-bar (ℏ), use ℏ on the modified Planck constant page
Previous: Pitchfork (⋔) Next: Planck Constant Over Two Pi (ℏ)
❓ Frequently Asked Questions
ℎ (hex), ℎ (decimal), ℎ (named), or \210E in CSS content. All produce ℎ.U+210E (PLANCK CONSTANT). Letterlike Symbols block. Hex 210E, decimal 8462. Denotes Planck’s constant h in physics notation.ℎ for h and ℏ for ℏ.ℎ, ℎ, 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
