HTML Entity for Uppercase H Caron (Ȟ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+021E

What You'll Learn

How to display the uppercase h with caron (Ȟ) in HTML using hexadecimal, decimal, and CSS escape methods. The caron (háček) diacritic appears in Lakota, Finnish Kalo (Romani), and other orthographies. It is U+021E (LATIN CAPITAL LETTER H WITH CARON) in the Latin Extended-B block.

Render it with Ȟ, Ȟ, or CSS escape \021E. There is no named HTML entity for this character.

⚡ Quick Reference — Uppercase H Caron Entity

Unicode U+021E

Latin Extended-B

Hex Code Ȟ

Hexadecimal reference

HTML Code Ȟ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+021E
Hex code       Ȟ
HTML code      Ȟ
Named entity   (none)
CSS code       \021E
Meaning        Latin capital letter H with caron
Related        U+021F = h caron (lowercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase h caron (Ȟ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\021E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x021E;</p>
<p>Symbol (decimal): &#542;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase h caron (Ȟ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase h caron (Ȟ) in orthographic contexts:

Large glyphȞ
Case pairȞ (U+021E) / ȟ (U+021F)
Language useLakota and Finnish Kalo (Romani) orthography
Not the same asplain H (U+0048)  |  Ĥ (h circumflex, Esperanto)
Numeric refs&#x021E; &#542; \021E

🧠 How It Works

1

Hexadecimal Code

&#x021E; uses the Unicode hexadecimal value 021E to display the uppercase h caron. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#542; uses the decimal Unicode value 542 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

\021E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: Ȟ. Unicode U+021E sits in Latin Extended-B. There is no named HTML entity. Lowercase pair: U+021F (ȟ). Do not confuse with Ĥ (h circumflex).

Use Cases

The uppercase h caron (Ȟ) is commonly used in:

🌐 Lakota

Native language materials and websites requiring the capital h with caron.

🌐 Finnish Kalo

Romani (Finnish Kalo) orthography and educational content using Ȟ/ȟ.

📚 Linguistic content

Language research, documentation, and academic papers studying extended Latin characters.

🎤 Phonetic transcription

Phonetic guides and pronunciation references using the capital h caron letter.

📖 Language learning

Educational websites and apps teaching languages that use the caron diacritic.

⚙ Font testing

Character set demonstrations and Unicode showcases for Latin Extended-B coverage.

📚 Dictionary apps

Dictionary interfaces and translation tools needing accurate character representation.

💡 Best Practices

Do

  • Use &#542; or &#x021E; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type Ȟ directly in UTF-8 source
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Pair with lowercase ȟ (U+021F) when showing case forms
  • Distinguish Ȟ (h caron) from Ĥ (h circumflex, Esperanto)

Don’t

  • Assume a named entity exists—there is none for Ȟ
  • Substitute plain H or Ĥ when Ȟ is required
  • Put CSS escape \021E in HTML text nodes
  • Use padded Unicode notation like U+0021E—the correct value is U+021E
  • Use \0021E in CSS—the correct escape is \021E

Key Takeaways

1

Three references render Ȟ (no named entity)

&#x021E; &#542;
2

For CSS stylesheets, use the escape in the content property

\021E
3

Unicode U+021E — LATIN CAPITAL LETTER H WITH CARON

4

Latin Extended-B; lowercase pair is ȟ (U+021F)

❓ Frequently Asked Questions

Use &#x021E; (hex), &#542; (decimal), or \021E in CSS content. There is no named HTML entity for this character.
U+021E (LATIN CAPITAL LETTER H WITH CARON). Latin Extended-B block. Hex 021E, decimal 542. Used in Lakota and Finnish Kalo (Romani), among other languages.
In Lakota and Finnish Kalo language content, linguistic and phonetic transcription, language learning and dictionary sites, and any content requiring the capital h with caron glyph.
HTML code (&#542; or &#x021E;) is used in HTML content. The CSS entity (\021E) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ȟ but in different contexts.
Ȟ appears in Lakota and Finnish Kalo (Romani) orthography, as well as in linguistic and phonetic notation. The caron (háček) modifies the letter H. Lowercase pair: ȟ (U+021F).

Explore More HTML Entities!

Discover 1500+ HTML character references — extended Latin, diacritics, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful