HTML Entity for Breve Below (̮)

What You'll Learn
How to display the Combining Breve Below (̮) in HTML and CSS. This character is U+032E in the Combining Diacritical Marks block (U+0300–U+036F), approved in Unicode 1.1 (1993). It is a nonspacing mark that attaches below the preceding character—the inverse of the regular combining breve (U+0306), which goes above.
There is no named HTML entity for U+032E. Use ̮ or ̮ in markup, or \32E in stylesheet content. Place the mark immediately after the base letter (e.g. ḫ renders as ḫ). Precomposed characters include Ḫ (U+1E2A) and ḫ (U+1E2B)—Latin H/h with breve below.
⚡ Quick Reference — Breve Below
U+032ECombining Diacritical Marks (U+0300–U+036F)
̮Hexadecimal reference
̮Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+032E
Hex code ̮
HTML code ̮
Named entity —
CSS code \32EComplete HTML Example
This example shows U+032E using hexadecimal and decimal references, combining with a base letter, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\32E";
}
</style>
</head>
<body>
<p>Breve Below using Hexa Decimal: ̮</p>
<p>Breve Below using HTML Code: ̮</p>
<p id="point">Breve Below using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+032E is widely supported when paired with a base character; combining mark placement depends on font shaping:
👀 Live Preview
See the combining breve below with base letters and precomposed forms (font-dependent):
🧠 How It Works
Hexadecimal Code
̮ references code point U+032E using hex digits 032E. Place it immediately after a base letter (e.g. ḫ).
Decimal HTML Code
̮ is the decimal equivalent (814) for the same Combining Breve Below character.
CSS Entity
\32E is the CSS escape for U+032E, used in the content property of ::before or ::after.
Combining behavior
The breve below attaches below the preceding character (combining class: Below). When alone it may display as a floating mark ̮. Precomposed ḫ (U+1E2B) is an alternative. Regular combining breve above is U+0306.
Use Cases
The Breve Below (̮) is commonly used for:
Voiceless pharyngeal fricative (ḫ) in Hittite cuneiform and ancient language studies.
International Phonetic Alphabet transcriptions and phonological documentation.
Linguistic research, phonetic notation, and language documentation.
Syriac text with diacritics and liturgical or scholarly transcription.
Ancient Near Eastern studies, philology, and comparative linguistics.
Pronunciation guides, phonetic dictionaries, and specialized language courses.
Ensure base + combining sequence is correct; screen readers rely on proper Unicode order.
💡 Best Practices
Do
- Place the breve below immediately after the base letter:
ḫ - Use precomposed U+1E2B when you need a single code point for ḫ
- Declare
<meta charset="utf-8">for correct combining rendering - Choose fonts that support Combining Diacritical Marks (U+0300–U+036F)
- Use
\32Eonly inside CSScontent, not inside HTML text nodes
Don’t
- Insert a space between the base letter and the combining mark
- Confuse U+032E (breve below) with U+0306 (combining breve above)
- Assume every font positions breve below correctly on all base letters
- Mix CSS escapes into HTML text nodes (use numeric refs in markup)
- Expect a named HTML entity—none exists for U+032E
Key Takeaways
Two numeric references render the combining mark
̮ ̮CSS content escape
\32EU+032E attaches below the preceding character; order matters
Combining Diacritical Marks block U+0300–U+036F; no named entity
Precomposed ḫ (U+1E2B) is an alternative to h + ̮
❓ Frequently Asked Questions
̮ (hex), ̮ (decimal), or \32E in CSS content. Place the mark immediately after the base letter (e.g. ḫ = ḫ). There is no named entity.U+032E (Combining Breve Below). Combining Diacritical Marks (U+0300–U+036F). Hex 032E, decimal 814. Attaches below the base character.\32E escape belongs in stylesheets (for example on pseudo-elements). Place the breve below right after the base letter in HTML.̮, ̮, or \32E in CSS depending on whether you are authoring markup or styles.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
