HTML Entity for Combining Double Ring Below (͚)

What You'll Learn
How to display the Combining Double Ring Below (͚) in HTML and CSS. This character is U+035A (COMBINING DOUBLE RING BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). It appears as a double ring below the preceding base character—for example a͚ for a͚.
There is no named HTML entity for U+035A. Use ͚, ͚, or \035A in CSS content. Place the entity immediately after the base letter with no space. Single ring below is U+0325; combining ring above is U+030A (̊).
⚡ Quick Reference — Double Ring Below
U+035ACombining Diacritical Marks (U+0300–U+036F)
͚Hexadecimal reference
͚Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+035A
Hex code ͚
HTML code ͚
Named entity —
CSS code \035A
Related U+0325 = Single ring below; U+030A = Ring aboveComplete HTML Example
This example shows U+035A using hexadecimal and decimal references, a base letter with the double ring below, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\035A";
}
</style>
</head>
<body>
<p>Double Ring Below using Hexadecimal: ͚</p>
<p>Double Ring Below using HTML Code: ͚</p>
<p id="point">Double Ring Below using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+035A is supported in modern browsers when placed after a base character and rendered with a font that supports Combining Diacritical Marks:
👀 Live Preview
See the double ring below a base letter (IPA font recommended):
🧠 How It Works
Hexadecimal Code
͚ references code point U+035A using hex digits 035A. Place it immediately after the base letter (e.g. a͚).
Decimal HTML Code
͚ uses the decimal Unicode value 858 for the same combining mark.
CSS Entity
\035A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Double ring below base character
Place U+035A right after the base letter: a͚. Used in IPA and linguistics. Single ring below is U+0325; ring above is U+030A.
Use Cases
The Combining Double Ring Below (͚) commonly appears in:
Phonetic transcriptions that use the double ring below for specific vowel or consonant qualities.
Academic papers, language descriptions, and phonetic notation requiring this diacritic.
Pronunciation guides and lexical entries with IPA combining ring diacritics.
Scripts or notation systems that use the double ring below for a specific phonetic value.
Reference pages for Combining Diacritical Marks (U+0300–U+036F).
Use fonts that support combining marks so base + U+035A renders correctly for all users.
💡 Best Practices
Do
- Place
͚immediately after the base letter (e.g.a͚) - Use
<meta charset="utf-8">on pages with combining marks - Choose IPA-friendly fonts (Charis SIL, Doulos SIL, Noto)
- Use hex or decimal consistently within one document
- Distinguish U+035A (double ring) from U+0325 (single ring below)
Don’t
- Confuse U+035A (double ring below) with U+030A (ring above) or U+0325 (single ring below)
- Put a space between the base letter and the combining entity
- Expect a named HTML entity—use numeric references only
- Put CSS escape
\035Ainside HTML text nodes - Assume every font renders IPA combining rings correctly
Key Takeaways
Two HTML references for the combining mark
͚ ͚For CSS stylesheets, use the escape in the content property
\035AU+035A combining double ring below—place after base letter
Example: a͚ with a͚
No named entity for U+035A — use numeric references
❓ Frequently Asked Questions
͚ (hex), ͚ (decimal), or \035A in CSS content. Place the entity immediately after the base letter (e.g. a͚ for a͚). There is no named HTML entity for U+035A.U+035A (COMBINING DOUBLE RING BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 035A, decimal 858. Used in IPA and linguistics below the base character.͚ or ͚) go in markup after a base character. The CSS escape \035A is used in stylesheets, typically in the content property of pseudo-elements.a͚ or a͚ in HTML with no space between the letter and the entity.Explore More HTML Entities!
Discover 1500+ HTML character references — diacritics, punctuation, symbols, and more.
8 people found this page helpful
