HTML Entity for Right Half Ring Below (̹)

What You'll Learn
How to insert the combining Right Half Ring Below (U+0339) in HTML using hexadecimal, decimal, and CSS escape methods. This mark appears below a base letter and is used in linguistics, IPA (International Phonetic Alphabet), and other contexts requiring diacritics (e.g. a̹, e̹).
It is U+0339 (COMBINING RIGHT HALF RING BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). Use ̹, ̹, or CSS \0339. There is no named HTML entity. Always place the code after the base character.
⚡ Quick Reference — Right Half Ring Below
U+0339Combining Diacritical Marks
̹Hexadecimal reference
̹Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0339
Hex code ̹
HTML code ̹
Named entity (none)
CSS code \0339
Meaning Combining right half ring below
Position Below base letter
IPA example a̹
Related U+0357 = right half ring above (͗)Complete HTML Example
A simple example showing the Right Half Ring Below (U+0339) 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: "\0339";
}
</style>
</head>
<body>
<p>Right Half Ring Below using Hexadecimal: a̹ e̹</p>
<p>Right Half Ring Below using HTML Code: a̹ o̹</p>
<p id="point">Right Half Ring Below using CSS Entity: a</p>
</body>
</html>🌐 Browser Support
The Right Half Ring Below (U+0339) renders when fonts support Combining Diacritical Marks with correct below-base positioning:
👀 Live Preview
See the Right Half Ring Below (U+0339) combined with base letters:
🧠 How It Works
Hexadecimal Code
̹ uses the Unicode hexadecimal value 0339 to display the combining mark. Place it immediately after the base character.
Decimal HTML Code
̹ uses the decimal Unicode value 825 for the same combining character.
CSS Entity
\0339 is used in CSS stylesheets in the content property of pseudo-elements like ::after following a base character in markup.
Combines with base letter
U+0339 stacks below the preceding base character (e.g. a̹). Unicode U+0339 is in Combining Diacritical Marks. Previous: Right Half Ring Above (͗).
Use Cases
The Right Half Ring Below (U+0339) is commonly used in:
Phonetic symbols and pronunciation in linguistic and dictionary content.
Academic papers, language descriptions, and orthographic notation.
Pronunciation and phonetic spelling for words using this diacritic.
Teach pronunciation and display IPA in language learning interfaces.
Phonological and phonetic research with correct combining characters.
Full Unicode rendering for languages and notation using diacritical marks.
💡 Best Practices
Do
- Place
̹or̹after the base character - Use fonts that support Combining Diacritical Marks (U+0339)
- Set
<meta charset="utf-8"> - Test rendering with your target font and browser
- Keep one numeric style (hex or decimal) per project
- Use IPA-capable fonts for linguistic content
Don’t
- Place the combining mark before the base letter
- Expect a named HTML entity for U+0339
- Use CSS
\0339inside HTML text nodes without a base character - Assume all fonts render combining marks with correct positioning
- Confuse U+0339 (below) with U+0357 (right half ring above)
Key Takeaways
Three ways to render U+0339 in HTML and CSS
̹ ̹For CSS, use \0339 in the content property after a base letter
Unicode U+0339 — COMBINING RIGHT HALF RING BELOW
Combining Diacritical Marks block (U+0300–U+036F) — no named entity
Previous: Right Half Ring Above (͗) Next: Right Harpoon Barb Down
❓ Frequently Asked Questions
̹ (hex), ̹ (decimal), or \0339 in CSS content. There is no named entity. Place the code after a base character (e.g. a̹) so the diacritic renders below it.U+0339 (COMBINING RIGHT HALF RING BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0339, decimal 825. A combining character that appears below a base letter.̹ or ̹) go in markup, typically after a base character. The CSS escape \0339 is used in stylesheets on ::before or ::after. Both produce the combining mark.̹) or decimal (̹) codes. That is standard for diacritics in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
