HTML Entity for Lowercase R Double Grave (ȑ)

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

What You'll Learn

How to display the lowercase r with double grave (ȑ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0211 in the Latin Extended-B block. The double grave (‿) diacritic is used in phonological notation—in Serbo-Croatian and Slovenian it can indicate a short falling tone on syllabic r, and in the International Phonetic Alphabet (IPA) it denotes extra-low tone.

Render it with ȑ, ȑ, or CSS escape \0211. There is no named HTML entity for this character. In UTF-8 documents you can also type ȑ directly.

⚡ Quick Reference — Lowercase R Double Grave Entity

Unicode U+0211

Latin Extended-B

Hex Code ȑ

Hexadecimal reference

HTML Code ȑ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0211
Hex code       ȑ
HTML code      ȑ
Named entity   (none)
CSS code       \0211
Meaning        Latin small letter r with double grave
Related        U+0210 = Ȑ (uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase r double grave (ȑ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0211";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0211;</p>
<p>Symbol (decimal): &#529;</p>
<p>Symbol (direct): ȑ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase r double grave (ȑ) is supported in all modern browsers as part of Latin Extended-B:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase r double grave (ȑ) in linguistic contexts:

Large glyphȑ
Unicode nameLatin small letter r with double grave
UsageSlavic phonology, syllabic r tone notation, IPA extra-low tone
UppercaseȐ (U+0210) — LATIN CAPITAL LETTER R WITH DOUBLE GRAVE
Not the same asŕ (acute)  |  ř (caron)  |  r (plain)
Numeric refs&#x0211; &#529; \0211

🧠 How It Works

1

Hexadecimal Code

&#x0211; uses the Unicode hexadecimal value 0211 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#529; uses the decimal Unicode value 529 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type ȑ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this phonological symbol.

HTML markup
4

CSS Entity

\0211 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: ȑ. Unicode U+0211 sits in Latin Extended-B. Uppercase equivalent: U+0210 (Ȑ). Do not confuse with ŕ (acute), ř (caron), or plain r.

Use Cases

The lowercase r double grave (ȑ) is commonly used in:

🇷🇸 Slavic Phonology

Represent short falling tone on syllabic r in Serbo-Croatian and Slovenian phonological descriptions.

🎙 IPA Notation

Extra-low tone marking in International Phonetic Alphabet transcriptions and linguistic textbooks.

📚 Academic & Linguistics

Scholarly papers, dictionaries, and phonology courses that reference precomposed r with double grave.

⚙ Programmatic HTML

When building HTML from linguistic databases, using &#529; or &#x0211; guarantees correct output.

📄 Typography & Publishing

Digital editions of linguistic resources that require accurate diacritic rendering.

♿ Accessibility

Using the correct character (U+0211) with proper lang attributes ensures assistive technologies handle content correctly.

🎨 CSS Generated Content

Using \0211 in the CSS content property to insert ȑ via pseudo-elements.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ȑ directly in UTF-8 source
  • Use numeric references (&#x0211; or &#529;) when escaping is required
  • Use \0211 in CSS content when generating the symbol via pseudo-elements
  • Distinguish ȑ (double grave) from ŕ (acute), ř (caron), and plain r
  • Choose fonts that include Latin Extended-B for consistent rendering

Don’t

  • Expect a named HTML entity—none exists for ȑ
  • Substitute plain r when ȑ is required in phonological text
  • Confuse ȑ (double grave) with ŕ (acute) or ř (caron)
  • Put CSS escape \0211 in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

No named entity—use hex or decimal references

&#x0211; &#529;
2

For CSS stylesheets, use the escape in the content property

\0211
3

Unicode U+0211 — LATIN SMALL LETTER R WITH DOUBLE GRAVE

4

Used in Slavic phonology and IPA; uppercase is Ȑ (U+0210)

❓ Frequently Asked Questions

Use &#x0211; (hex), &#529; (decimal), or \0211 in CSS content. There is no named HTML entity for ȑ. In UTF-8 you can also type ȑ directly.
U+0211 (LATIN SMALL LETTER R WITH DOUBLE GRAVE). Latin Extended-B block. Hex 0211, decimal 529. Used in Slavic phonology and IPA tone notation. Uppercase form is U+0210 (Ȑ).
When displaying phonological discussions of Serbo-Croatian and Slovenian, IPA extra-low tone notation, linguistics papers, or any content that requires r with double grave. In UTF-8 pages you can type ȑ directly.
No. There is no named HTML entity for ȑ. Use numeric codes &#529; or &#x0211;, or the CSS entity \0211. In UTF-8 pages you can type ȑ directly.
ȑ (U+0211) is r with double grave, used in Slavic phonology and IPA tone notation. ŕ (acute), ŗ (cedilla), and ř (caron) are different precomposed letters with distinct Unicode values. Plain r is U+0072.

Explore More HTML Entities!

Discover 1500+ HTML character references — 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