HTML Entity for Ring Below (̥)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0325

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

Unicode U+0325

Combining Diacritical Marks

Hex Code ̥

Hexadecimal reference

HTML Code ̥

Decimal reference

Named Entity

Use numeric codes only

Reference Table
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̥)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\325";
  }
 </style>
</head>
<body>
<p>a with ring below (hex): a&#x0325;</p>
<p>a with ring below (decimal): a&#805;</p>
<p id="point">a with ring below (CSS): a</p>
</body>
</html>
Try it Yourself

🌐 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:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See Ring Below (̥) combined with base characters in different contexts:

With letter a ḁ (combining ring below)
Large glyph
IPA voiceless p̥ t̥ k̥ (voiceless consonants)
Mark comparison ̥ ̊ ∘
Numeric refs &#x0325; &#805; \325
Tip Always place the combining mark immediately after its base character.

🧠 How It Works

1

Hexadecimal Code

&#x0325; uses the Unicode hexadecimal value 0325. Place it after a base character: a&#x0325;.

HTML markup
2

Decimal HTML Code

&#805; uses the decimal Unicode value 805. Example: a&#805;.

HTML markup
3

CSS Entity

\325 is used in CSS stylesheets in the content property of pseudo-elements like ::after, following a base character in markup.

CSS stylesheet
=

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:

💬 Phonetic Transcriptions

Mark voicelessness in IPA (e.g. p̥, t̥, k̥).

📚 Linguistic Documentation

Use in academic papers and research requiring precise diacritics.

📖 Dictionary Entries

Show pronunciation guides with voiceless consonant notation.

🔬 Language Research

Include in comparative linguistics and phonetic analysis.

🏫 Educational Content

Display in language-learning resources and linguistic tutorials.

💻 Language Apps

Render custom letter+diacritic combinations in web UIs.

💡 Best Practices

Do

  • Always pair ̥ with a base character (e.g. a&#x0325; or p&#x0325;)
  • Use &#x0325; or &#805; 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 \325 inside HTML text nodes without a base character
  • Rely on the mark alone without context for screen readers

Key Takeaways

1

Two HTML references plus CSS attach ̥ to a base character

&#x0325; &#805;
2

For CSS, use \325 in the content property after a base letter

3

Unicode U+0325 — COMBINING RING BELOW (not a standalone letter)

4

Example: a&#x0325; renders as ḁ; common in IPA for voiceless sounds (p̥)

5

Previous: Ring Above   Next: Ring Equal To

❓ Frequently Asked Questions

Use &#x0325; (hex) or &#805; (decimal) immediately after a base character (e.g. a&#x0325; 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.
In phonetic transcriptions, IPA voicelessness notation, linguistic documentation, academic papers, dictionary entries, and language research requiring diacritical marks below a base letter.
HTML references (&#805; or &#x0325;) 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.
Named HTML entities cover a subset of common characters. Combining Diacritical Marks like U+0325 use numeric hex or decimal codes or CSS escapes, which is standard for combining marks in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — combining marks, letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful