HTML Entity for Lowercase R Acute (ŕ)

What You'll Learn
How to display the lowercase r with acute accent (ŕ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0155 in the Latin Extended-A block. It appears in Slovak (e.g. vŕba — willow), Lower Sorbian, and Võro orthography, where it represents a syllabic or palatalised alveolar trill.
Render it with ŕ, ŕ, ŕ, or CSS escape \0155. The named entity ŕ is the most readable option in HTML source.
⚡ Quick Reference — Lowercase R Acute Entity
U+0155Latin Extended-A
ŕHexadecimal reference
ŕDecimal reference
ŕMost readable option
Name Value
──────────── ──────────
Unicode U+0155
Hex code ŕ
HTML code ŕ
Named entity ŕ
CSS code \0155
Meaning Latin small letter r with acute
Related U+0154 = Ŕ (Ŕ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase r acute (ŕ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0155";
}
</style>
</head>
<body>
<p>Symbol (hex): ŕ</p>
<p>Symbol (decimal): ŕ</p>
<p>Symbol (named): ŕ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase r acute (ŕ) and the named entity ŕ are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the lowercase r acute (ŕ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ŕ uses the Unicode hexadecimal value 0155 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ŕ uses the decimal Unicode value 341 to display the same character. A common method when a numeric reference is needed.
Named Entity
ŕ is the named entity for r acute—readable in source HTML and the preferred option for Slovak and related language content.
CSS Entity
\0155 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ŕ. Unicode U+0155 sits in Latin Extended-A. Uppercase equivalent: U+0154 (Ŕ, Ŕ). Do not confuse with plain r (U+0072) or ř (caron).
Use Cases
The lowercase r acute (ŕ) is commonly used in:
Essential for correct Slovak spelling (e.g. vŕba, hŕb). Use the entity or UTF-8 for proper display and SEO.
Used in Lower Sorbian and Võro orthography for the palatalised alveolar trill.
Teach correct spelling and pronunciation for Slovak and related languages that use this character.
Support proper rendering of names, place names, and content in Slovak and related languages.
Ensure correct character display in digital publications, dictionaries, and linguistic resources.
Using the correct character (U+0155) with proper lang attributes (e.g. lang="sk") ensures assistive technologies pronounce content correctly.
Using \0155 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
ŕfor readable HTML when a named form is preferred - Set
lang="sk"on Slovak content for correct pronunciation hints - Use
\0155in CSScontentwhen generating the symbol via pseudo-elements - Distinguish ŕ (acute) from ř (caron) and plain r (U+0072)
Don’t
- Substitute plain
rwhen ŕ is required in Slovak text - Confuse ŕ (acute) with ř (caron) or plain r (U+0072)
- Put CSS escape
\0155in HTML text nodes - Double-encode entity references in dynamically generated HTML
- Omit
langattributes on pages with Slovak content
Key Takeaways
The named entity is the most readable form
ŕNumeric alternatives: hex and decimal
ŕ ŕUnicode U+0155 — LATIN SMALL LETTER R WITH ACUTE
Essential for Slovak; uppercase is Ŕ (Ŕ)
Previous: Lowercase R (r) Next: Lowercase R Caron (ř)
❓ Frequently Asked Questions
ŕ (named), ŕ (hex), ŕ (decimal), or \0155 in CSS content. In UTF-8 you can also type ŕ directly.U+0155 (LATIN SMALL LETTER R WITH ACUTE). Latin Extended-A block. Hex 0155, decimal 341. Used in Slovak, Lower Sorbian, and Võro. Uppercase form is U+0154 (Ŕ).ŕ. You can also use ŕ or ŕ, or the CSS entity \0155.ŕ, ŕ, or ŕ) is used in HTML content; CSS entity \0155 is used in stylesheets in the content property of pseudo-elements. Both produce ŕ.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
