HTML Entity for Caron Below (̬)

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

What You'll Learn

How to display the Combining Caron Below (̬) in HTML and CSS. This character is U+032C in the Combining Diacritical Marks block (U+0300–U+036F), approved in Unicode 1.1 (1993). Also called háček below, it is a nonspacing mark that attaches below the preceding base character.

There is no named HTML entity for U+032C. Use ̬ or ̬ in markup, or \32C in stylesheet content. Place the mark immediately after the base letter (e.g. t̬). Do not confuse with U+030C (Combining Caron), which places the háček above the character (č, š, etc.).

⚡ Quick Reference — Caron Below

Unicode U+032C

Combining Diacritical Marks (U+0300–U+036F)

Hex Code ̬

Hexadecimal reference

HTML Code ̬

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+032C
Hex code       ̬
HTML code      ̬
Named entity   —
CSS code       \32C
1

Complete HTML Example

This example shows U+032C using hexadecimal and decimal references, combining with a base letter, plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\32C";
  }
 </style>
</head>
<body>
<p>Caron Below using Hexa Decimal: &#x032C;</p>
<p>Caron Below using HTML Code: &#812;</p>
<p id="point">Caron Below using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Caron Below combining mark is supported in all modern browsers when paired with a base character:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Caron Below combining with base letters and compared to caron above:

With base letter t̬   n̬   s̬
Standalone mark ̬
Below vs above Below: t̬ (U+032C)   Above: ť (U+030C)
Precomposed alt For Czech č use U+010D or c + U+030C above
Monospace refs &#x032C; &#812; \32C

🧠 How It Works

1

Hexadecimal Code

&#x032C; references code point U+032C using hex digits 032C. Place it immediately after a base letter (e.g. t&#x032C;).

HTML markup
2

Decimal HTML Code

&#812; is the decimal equivalent (812) for the same Combining Caron Below character.

HTML markup
3

CSS Entity

\32C is the CSS escape for U+032C, used in the content property of ::before or ::after.

CSS stylesheet
=

Combining result

The mark attaches below the preceding base character. Unicode U+032C is distinct from U+030C (Combining Caron above). No named HTML entity exists.

Use Cases

The Caron Below (̬) commonly appears in:

🔤 IPA transcription

Phonetic notation in the International Phonetic Alphabet.

📚 Linguistic content

Slavic, Baltic, Finnic, Samic, and Berber orthographies.

📖 Dictionaries

Pronunciation keys, lexical databases, and phonetic guides.

🎓 Academic research

Phonology, comparative linguistics, and dialectology.

🌐 Multilingual typography

Content mixing scripts with caron-below diacritics.

✍ Specialized publishing

Font design, character sets, and linguistic publishing.

♿ Accessibility

Pair with text or phonetic context for screen reader users.

💡 Best Practices

Do

  • Place &#x032C; or &#812; immediately after the base letter
  • Use IPA-friendly fonts (Charis SIL, Doulos SIL, Noto Serif)
  • Distinguish U+032C (below) from U+030C (caron above)
  • Declare <meta charset="utf-8"> for reliable combining
  • Prefer precomposed letters when available for common languages

Don’t

  • Put the combining mark before the base character
  • Use U+032C when you need caron above (use U+030C instead)
  • Put CSS escape \32C inside HTML text nodes
  • Assume every Slavic letter uses caron below (most use caron above)
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML references for the combining mark

&#x032C; &#812;
2

For CSS stylesheets, use the escape in the content property

\32C
3

U+032C Combining Caron Below — attaches under base letters

4

No named HTML entity — use numeric references only

5

Caron above = U+030C; caron below = U+032C

❓ Frequently Asked Questions

Use &#x032C; (hex), &#812; (decimal), or \32C in CSS content. Place the mark right after the base letter. There is no named HTML entity.
U+032C (Combining Caron Below). Combining Diacritical Marks block (U+0300–U+036F). Hex 032C, decimal 812. Háček placed beneath the base character.
For IPA phonetic transcription, Slavic, Baltic, Finnic, and Samic language content, and linguistic notation requiring a háček beneath a character.
HTML numeric references (&#812; or &#x032C;) go directly in markup after the base letter. The CSS escape \32C is used in stylesheets, typically in the content property of pseudo-elements.
No. Use &#x032C;, &#812;, or \32C in CSS. For caron above the letter, use U+030C (Combining Caron).

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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