HTML Entity for Lowercase H Caron (ȟ)

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

What You'll Learn

How to display the lowercase 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+021F in the Latin Extended-B block.

Render it with ȟ, ȟ, or CSS escape \021F. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase H Caron Entity

Unicode U+021F

Latin Extended-B

Hex Code ȟ

Hexadecimal reference

HTML Code ȟ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

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

🌐 Browser Support

The lowercase h caron (ȟ) and its numeric entity references are supported in modern browsers:

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

👀 Live Preview

See the lowercase h caron (ȟ) in language and linguistic contexts:

Large glyphȟ
DiacriticCaron (háček) on h
Used inLakota and Finnish Kalo (Romani)
Not the same asĥ (h circumflex) or plain h
Numeric refs&#x21F; &#543; \021F

🧠 How It Works

1

Hexadecimal Code

&#x21F; uses the Unicode hexadecimal value 21F to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\021F 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+021F sits in Latin Extended-B. Do not confuse ȟ (h caron) with ĥ (h circumflex). There is no named HTML entity.

Use Cases

The lowercase h caron (ȟ) is commonly used in:

🏳 Lakota

Proper orthography in Lakota texts, where ȟ represents a voiceless uvular fricative.

🔤 Finnish Kalo

Finnish Kalo (Romani) language content and language resources.

🔬 Linguistics

Phonetic notation, linguistic papers, and language documentation.

📚 Language learning

Apps and sites teaching Lakota or related languages with correct spelling.

📄 Dictionaries

Dictionary entries and word lists that include this character.

🌐 Indigenous languages

Websites dedicated to indigenous and minority language content.

♿ Accessibility

Use lang="lkt" for Lakota content to aid screen readers and search engines.

💡 Best Practices

Do

  • Use &#543; or &#x21F; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ȟ directly in UTF-8 source
  • Set lang="lkt" on Lakota content for accessibility and SEO
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Distinguish ȟ (h caron) from ĥ (h circumflex)

Don’t

  • Assume a named entity exists—there is none for ȟ
  • Substitute plain h when ȟ is required for orthography
  • Put CSS escape \021F in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Confuse ȟ (caron) with ĥ (circumflex)

Key Takeaways

1

Three references render ȟ (no named entity)

&#x21F; &#543;
2

For CSS stylesheets, use the escape in the content property

\021F
3

Unicode U+021F — LATIN SMALL LETTER H WITH CARON

4

Used in Lakota and Finnish Kalo (Latin Extended-B)

❓ Frequently Asked Questions

Use &#x21F; (hex), &#543; (decimal), or \021F in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+021F (LATIN SMALL LETTER H WITH CARON). Latin Extended-B block. Hex 21F, decimal 543. 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 that requires this character for correct orthography.
Named HTML entities are typically reserved for ASCII, Latin-1, and common characters. ȟ is in the Latin Extended-B block and has no predefined named entity. Use &#x21F;, &#543;, or \021F instead.
ȟ (U+021F) has a caron (háček) and is used in Lakota and Finnish Kalo. ĥ (U+0125) has a circumflex and is used in Esperanto and some other languages. They are different characters with different diacritics and language use.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, 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