HTML Entity for Bridge Below (̪)

What You'll Learn
How to display the Combining Bridge Below (̪) in HTML and CSS. This character is U+032A 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.
In International Phonetic Alphabet (IPA) notation, it denotes dental consonants—sounds articulated with the tongue against the upper teeth, such as θ (theta) and ð (eth). There is no named HTML entity for U+032A. Use ̪ or ̪ in markup, or \32A in stylesheet content. The related Combining Bridge Above is U+0346 (͆), used when space below is insufficient.
⚡ Quick Reference — Bridge Below
U+032ACombining Diacritical Marks (U+0300–U+036F)
̪Hexadecimal reference
̪Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+032A
Hex code ̪
HTML code ̪
Named entity —
CSS code \32AComplete HTML Example
This example shows U+032A using hexadecimal and decimal references, combining with a base letter for IPA dental notation, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\32A";
}
</style>
</head>
<body>
<p>Bridge Below using Hexa Decimal: ̪</p>
<p>Bridge Below using HTML Code: ̪</p>
<p id="point">Bridge Below using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+032A is widely supported when paired with a base character; combining mark placement depends on font shaping and IPA font choice:
👀 Live Preview
See the combining bridge below with base letters (font-dependent; IPA fonts render best):
🧠 How It Works
Hexadecimal Code
̪ references code point U+032A using hex digits 032A. Place it immediately after a base letter (e.g. t̪).
Decimal HTML Code
̪ is the decimal equivalent (810) for the same Combining Bridge Below character.
CSS Entity
\32A is the CSS escape for U+032A, used in the content property of ::before or ::after.
Combining behavior
The bridge below attaches below the preceding character (combining class: Below). When alone it may display as a floating mark ̪. Related: Combining Bridge Above U+0346 (͆).
Use Cases
The Bridge Below (̪) is commonly used for:
IPA transcriptions for dental consonants (e.g. t̪, d̪, n̪).
Phonological notation, phonetic research, and language documentation.
Dictionary entries, pronunciation guides, and speech pathology notation.
Phonology papers, linguistic journals, and scholarly articles.
Endangered language preservation, field linguistics, and descriptive phonetics.
Correct rendering of IPA diacritics in multilingual and phonetic typography.
Ensure base + combining sequence is correct; screen readers rely on proper Unicode order.
💡 Best Practices
Do
- Place the bridge below immediately after the base letter:
t̪ - Use IPA-aware fonts (e.g. Charis SIL, Doulos SIL) for reliable dental notation
- Declare
<meta charset="utf-8">for correct combining rendering - Use
\32Aonly inside CSScontent, not inside HTML text nodes - Distinguish dental plosives (t̪) from dental fricatives (θ, ð)
Don’t
- Insert a space between the base letter and the combining mark
- Confuse U+032A (bridge below) with U+0346 (bridge above)
- Assume every font supports U+032A or positions the bridge correctly
- Mix CSS escapes into HTML text nodes (use numeric refs in markup)
- Expect a named HTML entity—none exists for U+032A
Key Takeaways
Two numeric references render the combining mark
̪ ̪CSS content escape
\32AU+032A attaches below the preceding character; order matters
Combining Diacritical Marks block; approved in Unicode 1.1 (1993)
Used in IPA for dental consonants (tongue against upper teeth)
❓ Frequently Asked Questions
̪ (hex), ̪ (decimal), or \32A in CSS content. Place the mark immediately after the base letter (e.g. t̪ = t̪). There is no named entity.U+032A (Combining Bridge Below). Combining Diacritical Marks (U+0300–U+036F), Unicode 1.1 (1993). Hex 032A, decimal 810.\32A escape belongs in stylesheets (for example on pseudo-elements). Both produce the same combining mark.̪, ̪, or \32A 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
