HTML Entity for Lowercase R Inverted Breve (ȓ)

What You'll Learn
How to display the lowercase r with inverted breve (ȓ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0213 in the Latin Extended-B block. The inverted breve is a rounded diacritical mark used in Slavicist phonology (e.g. long falling accent on syllabic r in Serbo-Croatian notation) and in specialized IPA and linguistic transcriptions.
Render it with ȓ, ȓ, or CSS escape \0213. There is no named HTML entity for this character. In UTF-8 documents you can also type ȓ directly.
⚡ Quick Reference — Lowercase R Inverted Breve Entity
U+0213Latin Extended-B
ȓHexadecimal reference
ȓDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0213
Hex code ȓ
HTML code ȓ
Named entity (none)
CSS code \0213
Meaning Latin small letter r with inverted breve
Related U+0212 = Ȓ (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase r inverted breve (ȓ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0213";
}
</style>
</head>
<body>
<p>Symbol (hex): ȓ</p>
<p>Symbol (decimal): ȓ</p>
<p>Symbol (direct): ȓ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase r inverted breve (ȓ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the lowercase r inverted breve (ȓ) in linguistic contexts:
🧠 How It Works
Hexadecimal Code
ȓ uses the Unicode hexadecimal value 0213 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȓ uses the decimal Unicode value 531 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type ȓ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this phonological symbol.
CSS Entity
\0213 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: ȓ. Unicode U+0213 sits in Latin Extended-B. Uppercase equivalent: U+0212 (Ȓ). Do not confuse with ȑ (double grave) or plain r.
Use Cases
The lowercase r inverted breve (ȓ) is commonly used in:
Long falling accent notation on syllabic r in Serbo-Croatian and related Slavic phonological descriptions.
Specialized phonetic transcriptions and linguistic textbooks that use precomposed r with inverted breve.
Scholarly papers, dictionaries, and phonology courses referencing this diacritic-marked letter.
When building HTML from linguistic databases, using ȓ or ȓ guarantees correct output.
Digital editions of linguistic resources that require accurate diacritic rendering.
Using the correct character (U+0213) with proper lang attributes ensures assistive technologies handle content correctly.
Using \0213 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 (
ȓorȓ) when escaping is required - Use
\0213in CSScontentwhen generating the symbol via pseudo-elements - Distinguish ȓ (inverted breve) from ȑ (double grave) 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
rwhen ȓ is required in phonological text - Confuse ȓ (inverted breve) with ȑ (double grave) or ř (caron)
- Put CSS escape
\0213in HTML text nodes - Double-encode numeric references in dynamically generated HTML
Key Takeaways
No named entity—use hex or decimal references
ȓ ȓFor CSS stylesheets, use the escape in the content property
\0213Unicode U+0213 — LATIN SMALL LETTER R WITH INVERTED BREVE
Used in Slavicist and IPA notation; uppercase is Ȓ (U+0212)
Previous: Lowercase R Double Grave (ȑ) Next: Lowercase R Latin
❓ Frequently Asked Questions
ȓ (hex), ȓ (decimal), or \0213 in CSS content. There is no named HTML entity for ȓ. In UTF-8 you can also type ȓ directly.U+0213 (LATIN SMALL LETTER R WITH INVERTED BREVE). Latin Extended-B block. Hex 0213, decimal 531. Used in Slavicist phonology and IPA notation. Uppercase form is U+0212 (Ȓ).ȓ or ȓ, or the CSS entity \0213. In UTF-8 pages you can type ȓ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
