HTML Entity for Circumflex Accent Below (̭)

What You'll Learn
How to display the Combining Circumflex Accent Below (̭) in HTML and CSS. This character is U+032D 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 circumflex (U+0302), which goes above.
There is no named HTML entity for U+032D. Use ̭ or ̭ in markup, or \32D in stylesheet content. Place the mark immediately after the base letter (e.g. ṱ renders as ṱ). Do not confuse U+032D with Combining Circumflex Accent U+0302 (̂, above the letter) or the spacing circumflex U+005E (^).
⚡ Quick Reference — Circumflex Accent Below
U+032DCombining Diacritical Marks (U+0300–U+036F)
̭Hexadecimal reference
̭Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+032D
Hex code ̭
HTML code ̭
Named entity —
CSS code \32DComplete HTML Example
This example shows U+032D 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: "\32D";
}
</style>
</head>
<body>
<p>Circumflex Accent Below using Hexa Decimal: ̭</p>
<p>Circumflex Accent Below using HTML Code: ̭</p>
<p id="point">Circumflex Accent Below using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+032D is widely supported when paired with a base character; combining mark placement depends on font shaping:
👀 Live Preview
See the combining circumflex below with base letters (font-dependent):
🧠 How It Works
Hexadecimal Code
̭ references code point U+032D using hex digits 032D. Place it immediately after a base letter (e.g. ṱ).
Decimal HTML Code
̭ is the decimal equivalent (813) for the same Combining Circumflex Accent Below character.
CSS Entity
\32D is the CSS escape for U+032D, used in the content property of ::before or ::after.
Combining behavior
The circumflex below attaches below the preceding character (combining class: Below). When alone it may display as a floating mark ̭. Regular combining circumflex above is U+0302 (̂). No named HTML entity exists.
Use Cases
The Circumflex Accent Below (̭) is commonly used for:
International Phonetic Alphabet transcriptions requiring a circumflex below the letter.
Phonetic notation, dialectology, and language documentation.
Linguistic papers and scholarly publications with specialized diacritics.
Dictionary pronunciation keys and reference works with below-the-letter marks.
Orthographies and constructed writing systems using circumflex below.
Unicode tables explaining combining diacritical marks.
Ensure base + combining sequence is correct; screen readers rely on proper Unicode order.
💡 Best Practices
Do
- Place the circumflex below immediately after the base letter:
ṱ - Declare
<meta charset="utf-8">for correct combining rendering - Choose fonts that support Combining Diacritical Marks (U+0300–U+036F)
- Use
\32Donly inside CSScontent, not inside HTML text nodes - Distinguish below (U+032D) from above (U+0302) when authoring phonetic text
Don’t
- Insert a space between the base letter and the combining mark
- Confuse U+032D (circumflex below) with U+0302 (combining circumflex above)
- Use spacing circumflex
^(U+005E) when a combining mark is required - Assume every font positions circumflex below correctly on all base letters
- Expect a named HTML entity—none exists for U+032D
Key Takeaways
Two numeric references render the combining mark
̭ ̭CSS content escape
\32DU+032D attaches below the preceding character; order matters
Combining Diacritical Marks block U+0300–U+036F; no named entity
Circumflex above = U+0302; circumflex below = U+032D
❓ Frequently Asked Questions
̭ (hex), ̭ (decimal), or \32D in CSS content. Place the mark immediately after the base letter (e.g. ṱ = ṱ). There is no named entity.U+032D (Combining Circumflex Accent Below). Combining Diacritical Marks (U+0300–U+036F). Hex 032D, decimal 813. Attaches below the base character.\32D escape belongs in stylesheets (for example on pseudo-elements). Place the circumflex below right after the base letter in HTML.̭, ̭, or \32D in CSS. Combining Circumflex Accent above is U+0302 (̂)—a different character.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
