HTML Entity for Uppercase H Circumflex (Ĥ)

What You'll Learn
How to display the uppercase H with circumflex (Ĥ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0124 (LATIN CAPITAL LETTER H WITH CIRCUMFLEX), the capital form of the circumflex H used in Esperanto and Chinook Jargon. It sits in the Latin Extended-A block.
Render it with Ĥ, Ĥ, Ĥ, or CSS escape \0124. The named entity Ĥ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase H Circumflex Entity
U+0124Latin Extended-A
ĤHexadecimal reference
ĤDecimal reference
ĤMost readable option
Name Value
──────────── ──────────
Unicode U+0124
Hex code Ĥ
HTML code Ĥ
Named entity Ĥ
CSS code \0124
Meaning Latin capital letter H with circumflex
Related U+0125 = ĥ (lowercase pair)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase H circumflex (Ĥ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0124";
}
</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 uppercase H circumflex (Ĥ) and the named entity Ĥ are supported in modern browsers:
👀 Live Preview
See the uppercase H circumflex (Ĥ) in Esperanto and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ĥ uses the Unicode hexadecimal value 0124 to display the uppercase H circumflex. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ĥ uses the decimal Unicode value 292 to display the same character. A common method for Latin Extended-A letters.
Named Entity
Ĥ is the standard named entity for Ĥ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\0124 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+0124 sits in Latin Extended-A. Lowercase pair: U+0125 (ĥ). Do not confuse with plain H (U+0048) or Ȟ (h caron).
Use Cases
The uppercase H circumflex (Ĥ) is commonly used in:
Esperanto language websites, courses, and content requiring correct Ĥ spelling.
Esperanto dictionaries and courses teaching circumflex letters.
Chinook Jargon texts and linguistic materials using circumflex H.
Constructed-language studies and typographic content with Latin Extended-A characters.
Accept and display Ĥ in inputs and search for Esperanto text.
Proper encoding helps screen readers handle Ĥ in localized text.
Font design and character set demonstrations for circumflex diacritics.
💡 Best Practices
Do
- Use
Ĥin HTML when possible for readability - Serve pages as UTF-8; you can also type Ĥ directly in UTF-8 source
- Use fonts that support Latin Extended-A (U+0100–U+017F)
- Set
lang="eo"on Esperanto content for correct pronunciation hints - Link to the lowercase pair
ĥ(ĥ) when documenting both forms
Don’t
- Substitute plain
Hwhen Ĥ is required for correct spelling - Confuse circumflex Ĥ with caron Ȟ or plain
H - Put CSS escape
\0124in HTML text nodes - Use padded Unicode notation like U+00124—the correct value is
U+0124 - Use
\00124in CSS—the correct escape is\0124
Key Takeaways
Four references render Ĥ; named entity is most readable
Ĥ Ĥ ĤFor CSS stylesheets, use the escape in the content property
\0124Unicode U+0124 — LATIN CAPITAL LETTER H WITH CIRCUMFLEX
Esperanto and Chinook Jargon; pair with ĥ (U+0125)
Previous: Uppercase H Caron (Ȟ) Next: Uppercase H Double Struck
❓ Frequently Asked Questions
Ĥ (named), Ĥ (hex), Ĥ (decimal), or \0124 in CSS content. The named entity Ĥ is the most readable for HTML content.U+0124 (LATIN CAPITAL LETTER H WITH CIRCUMFLEX). Latin Extended-A block. Hex 0124, decimal 292. Used in Esperanto and Chinook Jargon, among other contexts.Ĥ or Ĥ) or the named entity Ĥ is used in HTML content. The CSS entity (\0124) 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 — Esperanto letters, diacritics, and more.
8 people found this page helpful
