HTML Entity for Inverted Bridge Below (U+033A)

What You'll Learn
How to insert the combining Inverted Bridge Below (U+033A) 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 articulatory notation (e.g. dental or bridge below, t̺, n̺).
It is U+033A (COMBINING INVERTED BRIDGE BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). Use ̺, ̺, or CSS \33A. There is no named HTML entity. Do not confuse U+033A with U+032F (inverted breve below).
⚡ Quick Reference — Inverted Bridge Below
U+033ACombining Diacritical Marks
̺Hexadecimal reference
̺Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+033A
Hex code ̺
HTML code ̺
Named entity (none)
CSS code \33A
Meaning Combining inverted bridge below
Position Below base letter
IPA example t̺ (articulatory)
Related U+032F = inverted breve belowComplete HTML Example
This example shows the Inverted Bridge Below (U+033A) 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: "\33A";
}
</style>
</head>
<body>
<p>Inverted Bridge Below using Hexadecimal: t̺ n̺</p>
<p>Inverted Bridge Below using Decimal: t̺ d̺</p>
<p id="point">Inverted Bridge Below using CSS Entity: t</p>
</body>
</html>🌐 Browser Support
The Inverted Bridge Below (U+033A) renders when fonts support Combining Diacritical Marks with correct below-base positioning:
👀 Live Preview
See the Inverted Bridge Below (U+033A) combined with base letters (font-dependent):
🧠 How It Works
Hexadecimal Code
̺ uses the Unicode hexadecimal value 033A. Place it immediately after the base letter in HTML.
Decimal HTML Code
̺ uses the decimal Unicode value 826 for the same combining character.
CSS Entity
\33A is used in CSS stylesheets in the content property, often on ::after following a base character in markup.
No Named Entity
U+033A has no standard &...; named form. Use hex, decimal, or CSS escape only.
Combined rendering
With a suitable font, t̺ shows the inverted bridge below t. Next: Inverted Double Arch Below (U+032B).
Use Cases
The Inverted Bridge Below (U+033A) is commonly used in:
Articulatory notation in IPA (e.g. dental or bridge below, t̺).
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.
Bridge-shaped 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+033A (bridge below) with U+032F (inverted breve below)
- Expect a named HTML entity for U+033A
- 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+033A
̺ ̺For CSS, use \33A in the content property
Unicode U+033A — COMBINING INVERTED BRIDGE BELOW
Common in IPA: t̺ for articulatory notation
Previous: Inverted Breve Below Next: Inverted Double Arch Below
❓ Frequently Asked Questions
̺ (hex), ̺ (decimal), or \33A in CSS content. There is no named entity. Place the mark immediately after the base letter (e.g. t̺) so it combines below the character.U+033A (COMBINING INVERTED BRIDGE BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 033A, decimal 826. Used in IPA and linguistics for articulatory notation below a letter.̺ or ̺) go in markup after the base character. The CSS escape \33A 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
