HTML Entity for Uppercase R Acute (Ŕ)

What You'll Learn
How to display the uppercase R with acute accent (Ŕ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0154 in the Latin Extended-A block. It appears in Slovak (e.g. Vŕba — willow), Lower Sorbian, and Võro orthography at the start of words or in proper nouns.
Render it with Ŕ, Ŕ, Ŕ, or CSS escape \0154. The named entity Ŕ is the most readable option in HTML source.
⚡ Quick Reference — Uppercase R Acute Entity
U+0154Latin Extended-A
ŔHexadecimal reference
ŔDecimal reference
ŔMost readable option
Name Value
──────────── ──────────
Unicode U+0154
Hex code Ŕ
HTML code Ŕ
Named entity Ŕ
CSS code \0154
Meaning Latin capital letter R with acute
Related U+0155 = ŕ (ŕ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase R acute (Ŕ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0154";
}
</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 uppercase R acute (Ŕ) and the named entity Ŕ are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase R acute (Ŕ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ŕ uses the Unicode hexadecimal value 0154 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ŕ uses the decimal Unicode value 340 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
\0154 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+0154 sits in Latin Extended-A. Lowercase equivalent: U+0155 (ŕ, ŕ). Do not confuse with plain R (U+0052) or Ř (caron).
Use Cases
The uppercase R acute (Ŕ) is commonly used in:
Essential for correct Slovak spelling at word starts and in proper nouns (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 in capital form.
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+0154) with proper lang attributes (e.g. lang="sk") ensures assistive technologies pronounce content correctly.
Using \0154 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
\0154in CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ŕ (acute) from Ř (caron) and plain R (U+0052)
Don’t
- Substitute plain
Rwhen Ŕ is required in Slovak text - Confuse Ŕ (acute, Slovak) with Ř (caron, Czech ř)
- Put CSS escape
\0154in HTML text nodes - Use
\00154in CSS—the correct escape is\0154 - Omit
langattributes on pages with Slovak content
Key Takeaways
The named entity is the most readable form
ŔNumeric alternatives: hex and decimal
Ŕ ŔUnicode U+0154 — LATIN CAPITAL LETTER R WITH ACUTE
Essential for Slovak; lowercase is ŕ (ŕ)
Previous: Uppercase R (R) Next: Uppercase R Black Letter Capital
❓ Frequently Asked Questions
Ŕ (named), Ŕ (hex), Ŕ (decimal), or \0154 in CSS content. In UTF-8 you can also type Ŕ directly.U+0154 (LATIN CAPITAL LETTER R WITH ACUTE). Latin Extended-A block. Hex 0154, decimal 340. Used in Slovak, Lower Sorbian, and Võro. Lowercase form is U+0155 (ŕ).Ŕ. You can also use Ŕ or Ŕ, or the CSS entity \0154.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
