HTML Entity for Uppercase H Latin (ʜ)

What You'll Learn
How to display the uppercase h latin (ʜ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+029C (LATIN LETTER SMALL CAPITAL H)—an IPA phonetic symbol used as the capital form of h in phonetic notation. It sits in the IPA Extensions block.
Render it with ʜ, ʜ, or CSS escape \029C. There is no named HTML entity for this character. In IPA it represents the voiceless epiglottal fricative.
⚡ Quick Reference — Uppercase H Latin Entity
U+029CIPA Extensions
ʜHexadecimal reference
ʜDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+029C
Hex code ʜ
HTML code ʜ
Named entity (none)
CSS code \029C
Meaning Latin letter small capital H
IPA use Voiceless epiglottal fricative
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the uppercase h latin (ʜ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\029C";
}
</style>
</head>
<body>
<p>Symbol (hex): ʜ</p>
<p>Symbol (decimal): ʜ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase h latin (ʜ) renders correctly in modern browsers when UTF-8 is used and the font supports IPA Extensions:
👀 Live Preview
See the uppercase h latin (ʜ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ʜ uses the Unicode hexadecimal value 029C to display the uppercase h latin. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʜ uses the decimal Unicode value 668 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\029C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ʜ. Unicode U+029C sits in IPA Extensions. There is no named HTML entity. Do not confuse with plain H (U+0048) or h (U+0068).
Use Cases
The uppercase h latin (ʜ) is commonly used in:
IPA notation, pronunciation guides, and linguistic research requiring the voiceless epiglottal fricative symbol.
International Phonetic Alphabet documentation, textbooks, and academic papers with accurate phonetic symbols.
Language research papers, documentation, and databases requiring proper IPA character representation.
Scholarly publications and phonetic analysis documents discussing epiglottal consonants.
Educational websites and apps that teach phonetic notation and pronunciation.
Dictionary interfaces and pronunciation tools needing accurate phonetic glyphs.
Character set demonstrations and Unicode showcases for IPA Extensions coverage.
💡 Best Practices
Do
- Use
ʜorʜin HTML (no named entity exists) - Serve pages as UTF-8; you can also type ʜ directly in UTF-8 source
- Use fonts that support IPA Extensions (U+0250–U+02AF), e.g. Doulos SIL or Charis SIL
- Distinguish ʜ (IPA small capital H) from plain
H(U+0048) andh(U+0068) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for ʜ
- Substitute plain
Horhwhen ʜ is required in IPA text - Put CSS escape
\029Cin HTML text nodes - Use padded Unicode notation like U+0029C—the correct value is
U+029C - Use
\0029Cin CSS—the correct escape is\029C
Key Takeaways
Three references render ʜ (no named entity)
ʜ ʜFor CSS stylesheets, use the escape in the content property
\029CUnicode U+029C — LATIN LETTER SMALL CAPITAL H
IPA Extensions; represents the voiceless epiglottal fricative in phonetic notation
Previous: Uppercase H Double Struck (ℍ) Next: Uppercase H Script
❓ Frequently Asked Questions
ʜ (hex), ʜ (decimal), or \029C in CSS content. There is no named HTML entity for this character.U+029C (LATIN LETTER SMALL CAPITAL H). IPA Extensions block. Hex 029C, decimal 668. Used in IPA phonetic notation for the voiceless epiglottal fricative.ʜ or ʜ) is used in HTML content. The CSS entity (\029C) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ʜ but in different contexts.H and lowercase h. In IPA it represents the voiceless epiglottal fricative—a specific phonetic sound, not the ordinary English “h” sound. This distinction matters for accurate phonetic representation in linguistic studies.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, phonetic symbols, and more.
8 people found this page helpful
