HTML Entity for Double Inverted Breve (͡)

What You'll Learn
How to display the Combining Double Inverted Breve (͡) in HTML and CSS. This character is U+0361 (COMBINING DOUBLE INVERTED BREVE), also called the ligature tie, in the Combining Diacritical Marks block (U+0300–U+036F). In IPA it links two characters with an arc above them—for example t͡ʃ for the affricate t͡ʃ.
There is no named HTML entity for U+0361. Use ͡, ͡, or \0361 in CSS content. Place the mark between the two base characters. Do not confuse with U+032F (combining inverted breve below) or U+0360 (combining double breve).
⚡ Quick Reference — Double Inverted Breve
U+0361Combining Diacritical Marks (U+0300–U+036F)
͡Hexadecimal reference
͡Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+0361
Hex code ͡
HTML code ͡
Named entity —
CSS code \0361
Related U+032F = Inverted breve below; U+0360 = Double breveComplete HTML Example
This example shows U+0361 using hexadecimal and decimal references, an IPA affricate with the ligature tie between letters, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0361";
}
</style>
</head>
<body>
<p>Double Inverted Breve using Hexadecimal: ͡</p>
<p>Double Inverted Breve using HTML Code: ͡</p>
<p id="point">Double Inverted Breve using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+0361 is supported in modern browsers when placed between base characters and rendered with an IPA-capable font:
👀 Live Preview
See the ligature tie in IPA notation (phonetic font recommended):
🧠 How It Works
Hexadecimal Code
͡ references code point U+0361 using hex digits 0361. Place it between two base letters (e.g. t͡ʃ).
Decimal HTML Code
͡ uses the decimal Unicode value 865 for the same ligature tie.
CSS Entity
\0361 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Ligature tie between characters
Place U+0361 between the two segments it links: t͡ʃ (affricate). Distinct from U+032F (inverted breve below) and U+0360 (double breve).
Use Cases
The Double Inverted Breve (͡) commonly appears in:
Affricates and linked segments (e.g. t͡ʃ, d͡ʒ) where the tie shows one phonetic unit.
Phonology papers, language-learning sites, and dictionaries with correct IPA notation.
Lexical entries and pronunciation keys using ligature ties in HTML.
Phonetics and language courses that display IPA symbols in the browser.
Reference pages for Combining Diacritical Marks (U+0300–U+036F).
Use IPA-capable fonts and plain-language glosses so assistive tech can interpret transcriptions.
💡 Best Practices
Do
- Place
͡between the two characters it links - Use
<meta charset="utf-8">on phonetic pages - Choose IPA fonts (Charis SIL, Doulos SIL, Noto Sans)
- Use hex or decimal consistently within one document
- Pair with MathML or plain text for complex phonetic layouts when needed
Don’t
- Confuse U+0361 (ligature tie) with U+032F (inverted breve below) or U+0360 (double breve)
- Place the tie after both letters instead of between them
- Use the tie for unrelated character pairs
- Put CSS escape
\0361inside HTML text nodes - Assume every font renders IPA ligature ties correctly
Key Takeaways
Two HTML references for the combining mark
͡ ͡For CSS stylesheets, use the escape in the content property
\0361U+0361 ligature tie—place between two base characters
IPA affricates: t͡ʃ, d͡ʒ
No named entity for U+0361 — use numeric references
❓ Frequently Asked Questions
͡ (hex), ͡ (decimal), or \0361 in CSS content. Place the mark between two base letters (e.g. t͡ʃ). There is no named HTML entity for U+0361.U+0361 (COMBINING DOUBLE INVERTED BREVE / ligature tie). Combining Diacritical Marks block (U+0300–U+036F). Hex 0361, decimal 865. Links two characters in IPA notation.͡ or ͡) go in markup between base characters. The CSS escape \0361 is used in stylesheets, typically in the content property of pseudo-elements.t͡ʃ or t͡ʃ in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — diacritics, punctuation, symbols, and more.
8 people found this page helpful
