HTML Entity for Uppercase R Caron (Ř)

What You'll Learn
How to display the uppercase R with caron (Ř) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0158 in the Latin Extended-A block. The caron (hček) diacritic marks a distinct Czech and Slovak consonant—appearing at word starts such as Řeka (river) and in names like Dvořák.
Render it with Ř, Ř, Ř, or CSS escape \0158. The named entity Ř is the most readable option in HTML source.
⚡ Quick Reference — Uppercase R Caron Entity
U+0158Latin Extended-A
ŘHexadecimal reference
ŘDecimal reference
ŘMost readable option
Name Value
──────────── ──────────
Unicode U+0158
Hex code Ř
HTML code Ř
Named entity Ř
CSS code \0158
Meaning Latin capital letter R with caron
Related U+0159 = ř (ř)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase R caron (Ř) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0158";
}
</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 caron (Ř) and the named entity Ř are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase R caron (Ř) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ř uses the Unicode hexadecimal value 0158 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ř uses the decimal Unicode value 344 to display the same character. A common method when a numeric reference is needed.
Named Entity
Ř is the named entity for R caron—readable in source HTML and the preferred option for Czech and Slovak content.
CSS Entity
\0158 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+0158 sits in Latin Extended-A. Lowercase equivalent: U+0159 (ř, ř). Do not confuse with plain R (U+0052) or Ŕ (acute).
Use Cases
The uppercase R caron (Ř) is commonly used in:
Essential for correct Czech spelling at word starts and in proper nouns (e.g. Řeka, Dvořák). Use the entity or UTF-8 for proper display and SEO.
Used in Slovak orthography alongside other caron-marked letters (Š, Č, Ž).
Teach correct spelling and pronunciation for Czech and related languages that use this character.
Support proper rendering of Czech names, place names, and content on international websites.
Ensure correct character display in digital publications, dictionaries, and linguistic resources.
Using the correct character (U+0158) with proper lang attributes (e.g. lang="cs") ensures assistive technologies pronounce content correctly.
Using \0158 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="cs"on Czech content for correct pronunciation hints - Use
\0158in CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ř (caron) from Ŕ (acute) and plain R (U+0052)
Don’t
- Substitute plain
Rwhen Ř is required in Czech text - Confuse Ř (caron, Czech) with Ŕ (acute, Slovak)
- Put CSS escape
\0158in HTML text nodes - Use
\00158in CSS—the correct escape is\0158 - Omit
langattributes on pages with Czech content
Key Takeaways
The named entity is the most readable form
ŘNumeric alternatives: hex and decimal
Ř ŘUnicode U+0158 — LATIN CAPITAL LETTER R WITH CARON
Essential for Czech; lowercase is ř (ř)
Previous: Uppercase R Black Letter Capital (ℜ) Next: Uppercase R Cedilla
❓ Frequently Asked Questions
Ř (named), Ř (hex), Ř (decimal), or \0158 in CSS content. In UTF-8 you can also type Ř directly.U+0158 (LATIN CAPITAL LETTER R WITH CARON). Latin Extended-A block. Hex 0158, decimal 344. Essential in Czech orthography. Lowercase form is U+0159 (ř).Ř. You can also use Ř or Ř, or the CSS entity \0158.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
