HTML Entity for Ring Below (̥)

What You'll Learn
How to display the Ring Below combining mark (̥) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0325 (COMBINING RING BELOW) in the Combining Diacritical Marks block (U+0300–U+036F)—commonly used in phonetic transcriptions and IPA notation to mark voicelessness (e.g. p̥, t̥).
Use ̥, ̥, or CSS \325 after a base character (e.g. ḁ renders as ḁ). There is no named HTML entity. Do not confuse ̥ with U+030A (̊, ring above) or U+2218 (∘, ring operator / ∘).
⚡ Quick Reference — Ring Below
U+0325Combining Diacritical Marks
̥Hexadecimal reference
̥Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0325
Hex code ̥
HTML code ̥
Named entity (none)
CSS code \325
Type Combining mark (needs base character)
Example ḁ → ḁ
Related U+030A = ring above (̊)
U+2218 = ring operator (∘ / ∘)
IPA usage p̥ = voiceless p (p̥)Complete HTML Example
A simple example showing Ring Below on the letter a using hexadecimal code, decimal HTML code, and a CSS content escape on ::after:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\325";
}
</style>
</head>
<body>
<p>a with ring below (hex): ḁ</p>
<p>a with ring below (decimal): ḁ</p>
<p id="point">a with ring below (CSS): a</p>
</body>
</html>🌐 Browser Support
The Ring Below combining mark (̥) is universally supported in all modern browsers when paired with a base character and the font includes Combining Diacritical Marks glyphs:
👀 Live Preview
See Ring Below (̥) combined with base characters in different contexts:
🧠 How It Works
Hexadecimal Code
̥ uses the Unicode hexadecimal value 0325. Place it after a base character: ḁ → ḁ.
Decimal HTML Code
̥ uses the decimal Unicode value 805. Example: ḁ → ḁ.
CSS Entity
\325 is used in CSS stylesheets in the content property of pseudo-elements like ::after, following a base character in markup.
Combined result
All three methods produce ḁ when paired with base a. Unicode U+0325 is a combining mark—it does not render meaningfully alone. Previous: Ring Above (U+030A).
Use Cases
The Ring Below combining mark (̥) is commonly used in:
Mark voicelessness in IPA (e.g. p̥, t̥, k̥).
Use in academic papers and research requiring precise diacritics.
Show pronunciation guides with voiceless consonant notation.
Include in comparative linguistics and phonetic analysis.
Display in language-learning resources and linguistic tutorials.
Render custom letter+diacritic combinations in web UIs.
💡 Best Practices
Do
- Always pair ̥ with a base character (e.g.
ḁorp̥) - Use
̥or̥for arbitrary base letters - Verify your font supports Combining Diacritical Marks
- Place the mark immediately after the base character in source order
- Use IPA fonts (e.g. Doulos SIL, Charis SIL) for phonetic content
Don’t
- Use ̥ alone—combining marks need a base glyph
- Confuse U+0325 (ring below) with U+030A (ring above) or U+2218 (ring operator)
- Assume a named HTML entity exists—there is none for U+0325
- Use CSS
\325inside HTML text nodes without a base character - Rely on the mark alone without context for screen readers
Key Takeaways
Two HTML references plus CSS attach ̥ to a base character
̥ ̥For CSS, use \325 in the content property after a base letter
Unicode U+0325 — COMBINING RING BELOW (not a standalone letter)
Example: ḁ renders as ḁ; common in IPA for voiceless sounds (p̥)
Previous: Ring Above Next: Ring Equal To
❓ Frequently Asked Questions
̥ (hex) or ̥ (decimal) immediately after a base character (e.g. ḁ for ḁ), or \325 in CSS content on ::after. There is no named HTML entity.U+0325 (COMBINING RING BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0325, decimal 805.̥ or ̥) go in markup after a base character. The CSS escape \325 is used in stylesheets, typically on ::after following a base letter in the element.Explore More HTML Entities!
Discover 1500+ HTML character references — combining marks, letters, symbols, and more.
8 people found this page helpful
