HTML Entity for Lowercase H Circumflex (ĥ)

What You'll Learn
How to display the lowercase h with circumflex (ĥ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This precomposed character is the 11th letter of the Esperanto alphabet (ĥo) and appears in Chinook Jargon orthography. It is U+0125 in the Latin Extended-A block.
Render it with ĥ, ĥ, ĥ, or CSS escape \0125. The named entity ĥ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase H Circumflex Entity
U+0125Latin Extended-A
ĥHexadecimal reference
ĥDecimal reference
ĥMost readable option
Name Value
──────────── ──────────
Unicode U+0125
Hex code ĥ
HTML code ĥ
Named entity ĥ
CSS code \0125
Meaning Latin small letter h with circumflex
Related U+0124 = H circumflex (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase h circumflex (ĥ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0125";
}
</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 lowercase h circumflex (ĥ) and the named entity ĥ are supported in all modern browsers:
👀 Live Preview
See the lowercase h circumflex (ĥ) in Esperanto and multilingual contexts:
🧠 How It Works
Named Entity
ĥ is the HTML named entity for the lowercase h with circumflex. It is easy to read and remember for Esperanto and other content that uses this character.
Hexadecimal Code
ĥ uses the Unicode hexadecimal value 0125 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ĥ uses the decimal Unicode value 293 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\0125 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+0125 sits in Latin Extended-A. Do not confuse ĥ (h circumflex) with ȟ (h caron) or plain h.
Use Cases
The lowercase h circumflex (ĥ) is commonly used in:
Proper orthography in Esperanto texts. ĥ (ĥo) is the 11th letter of the Esperanto alphabet.
Revised Demers/Blanchet/St Onge orthography for Chinook Jargon content.
Esperanto courses, apps, and dictionaries with correct spelling.
Internationalized web content supporting Esperanto and related languages.
Phonetic notation, linguistic papers, and language documentation.
Use lang="eo" on Esperanto content to aid screen readers and search engines.
Demonstrating Latin Extended-A diacritical characters in educational content.
💡 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
- Set
lang="eo"on Esperanto content for accessibility and SEO - Use fonts that support Latin Extended-A (U+0100–U+017F)
- Distinguish ĥ (h circumflex) from ȟ (h caron) and plain
h
Don’t
- Substitute plain
hwhen ĥ is required in Esperanto or Chinook Jargon - Confuse ĥ (ĥ) with ȟ (h caron, Lakota)
- Put CSS escape
\0125in HTML text nodes - Assume all fonts render Latin Extended-A glyphs 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
\0125Unicode U+0125 — LATIN SMALL LETTER H WITH CIRCUMFLEX
Esperanto 11th letter (ĥo); also used in Chinook Jargon
Previous: Lowercase H Caron (ȟ) Next: Lowercase H Heng Hook
❓ Frequently Asked Questions
ĥ (named), ĥ (hex), ĥ (decimal), or \0125 in CSS content. All four methods render ĥ correctly.U+0125 (LATIN SMALL LETTER H WITH CIRCUMFLEX). Latin Extended-A block. Hex 0125, decimal 293. Used in Esperanto and Chinook Jargon, among other contexts.ĥ. You can also use ĥ, ĥ, or \0125 in CSS content.U+0125, ĥ) is the lowercase h with a circumflex accent, used in Esperanto (as ĥo) and Chinook Jargon. The regular Latin small letter h (U+0068) has no diacritic. They represent different sounds and are not interchangeable in those languages.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
