HTML Entity for Inverted Double Arch Below (U+032B)

What You'll Learn
How to insert the combining Inverted Double Arch Below (U+032B) in HTML using hexadecimal, decimal, and CSS escape methods. This mark appears below a base letter and is used in the International Phonetic Alphabet (IPA) and linguistics for specific articulation (e.g. labialization or related quality, u̫, o̫).
It is U+032B (COMBINING INVERTED DOUBLE ARCH BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). Use ̫, ̫, or CSS \32B. There is no named HTML entity. Do not confuse U+032B with U+033A (inverted bridge below).
⚡ Quick Reference — Inverted Double Arch Below
U+032BCombining Diacritical Marks
̫Hexadecimal reference
̫Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+032B
Hex code ̫
HTML code ̫
Named entity (none)
CSS code \32B
Meaning Combining inverted double arch below
Position Below base letter
IPA example u̫ (articulatory)
Related U+033A = inverted bridge belowComplete HTML Example
This example shows the Inverted Double Arch Below (U+032B) with base letters using hexadecimal code, decimal HTML code, and a CSS content escape. Always place the combining mark after the base character:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\32B";
}
</style>
</head>
<body>
<p>Inverted Double Arch Below using Hexadecimal: u̫ o̫</p>
<p>Inverted Double Arch Below using Decimal: u̫ a̫</p>
<p id="point">Inverted Double Arch Below using CSS Entity: u</p>
</body>
</html>🌐 Browser Support
The Inverted Double Arch Below (U+032B) renders when fonts support Combining Diacritical Marks with correct below-base positioning:
👀 Live Preview
See the Inverted Double Arch Below (U+032B) combined with base letters (font-dependent):
🧠 How It Works
Hexadecimal Code
̫ uses the Unicode hexadecimal value 032B. Place it immediately after the base letter in HTML.
Decimal HTML Code
̫ uses the decimal Unicode value 811 for the same combining character.
CSS Entity
\32B is used in CSS stylesheets in the content property, often on ::after following a base character in markup.
No Named Entity
U+032B has no standard &...; named form. Use hex, decimal, or CSS escape only.
Combined rendering
With a suitable font, u̫ shows the inverted double arch below u. Next: Inverted Exclamation Mark (U+00A1).
Use Cases
The Inverted Double Arch Below (U+032B) is commonly used in:
Articulatory notation in IPA (e.g. labialization, u̫).
Articulatory and phonological descriptions in research.
Pronunciation entries and language reference content.
Phonetics, phonology, and comparative linguistics papers.
Language-learning apps with accurate phonetic spelling.
Double-arch diacritic below the base letter for correct phonetic representation.
💡 Best Practices
Do
- Place
̫or̫after the base letter - Use IPA fonts (Charis SIL, DejaVu Sans, Doulos SIL)
- Set
<meta charset="utf-8"> - Pick one numeric style per project
- Provide IPA or pronunciation context for readers
Don’t
- Put the combining mark before the base character
- Confuse U+032B (double arch below) with U+033A (inverted bridge below)
- Expect a named HTML entity for U+032B
- Use fonts without Combining Diacritical Marks support
- Display the mark alone as readable text without a base letter
Key Takeaways
Two HTML numeric references plus CSS for U+032B
̫ ̫For CSS, use \32B in the content property
Unicode U+032B — COMBINING INVERTED DOUBLE ARCH BELOW
Common in IPA: u̫ for articulatory notation
Previous: Inverted Bridge Below Next: Inverted Exclamation Mark
❓ Frequently Asked Questions
̫ (hex), ̫ (decimal), or \32B in CSS content. There is no named entity. Place the mark immediately after the base letter (e.g. u̫) so it combines below the character.U+032B (COMBINING INVERTED DOUBLE ARCH BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 032B, decimal 811. Used in IPA and linguistics for articulatory notation below a letter.̫ or ̫) go in markup after the base character. The CSS escape \32B is used in stylesheets, typically on ::after. Both render the combining mark below the letter.Explore More HTML Entities!
Discover 1500+ HTML character references — diacritics, IPA symbols, math, and more.
8 people found this page helpful
