HTML Entity for Uppercase R Double Grave (Ȑ)

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

What You'll Learn

How to display the uppercase R with double grave (Ȑ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0210 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 \0210. There is no named HTML entity for this character. In UTF-8 documents you can also type Ȑ directly.

⚡ Quick Reference — Uppercase R Double Grave Entity

Unicode U+0210

Latin Extended-B

Hex Code Ȑ

Hexadecimal reference

HTML Code Ȑ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

A simple example showing the uppercase 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: "\0210";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0210;</p>
<p>Symbol (decimal): &#528;</p>
<p>Symbol (direct): Ȑ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase 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 uppercase R double grave (Ȑ) in linguistic contexts:

Large glyphȐ
Unicode nameLatin capital letter R with double grave
UsageSlavic phonology, syllabic R tone notation, IPA extra-low tone
Lowercaseȑ (U+0211)
Not the same asŔ (acute)  |  Ř (caron)  |  R (plain)
Numeric refs&#x0210; &#528; \0210

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#528; uses the decimal Unicode value 528 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

\0210 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+0210 sits in Latin Extended-B. Lowercase equivalent: U+0211 (ȑ). Do not confuse with Ŕ (acute), Ř (caron), or plain R.

Use Cases

The uppercase 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 &#528; or &#x0210; guarantees correct output.

📄 Typography & Publishing

Digital editions of linguistic resources that require accurate diacritic rendering.

♿ Accessibility

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

🎨 CSS Generated Content

Using \0210 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 (&#x0210; or &#528;) when escaping is required
  • Use \0210 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 \0210 in HTML text nodes
  • Use \00210 in CSS—the correct escape is \0210

Key Takeaways

1

No named entity—use hex or decimal references

&#x0210; &#528;
2

For CSS stylesheets, use the escape in the content property

\0210
3

Unicode U+0210 — LATIN CAPITAL LETTER R WITH DOUBLE GRAVE

4

Used in Slavic phonology and IPA; lowercase is ȑ (U+0211)

❓ Frequently Asked Questions

Use &#x0210; (hex), &#528; (decimal), or \0210 in CSS content. There is no named HTML entity for Ȑ. In UTF-8 you can also type Ȑ directly.
U+0210 (LATIN CAPITAL LETTER R WITH DOUBLE GRAVE). Latin Extended-B block. Hex 0210, decimal 528. Used in Slavic phonology and IPA tone notation. Lowercase form is U+0211 (ȑ).
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 &#528; or &#x0210;, or the CSS entity \0210. In UTF-8 pages you can type Ȑ directly.
Ȑ (U+0210) 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+0052.

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