HTML Entity for Uppercase R Cedilla (Ŗ)

What You'll Learn
How to display the uppercase R with cedilla (Ŗ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0156 in the Latin Extended-A block. It appears in Latvian historical orthography (pre-1946, alongside letters like ļ and ķ) and in linguistic, academic, and archival content.
Render it with Ŗ, Ŗ, Ŗ, or CSS escape \0156. The named entity Ŗ is the most readable option in HTML source.
⚡ Quick Reference — Uppercase R Cedilla Entity
U+0156Latin Extended-A
ŖHexadecimal reference
ŖDecimal reference
ŖMost readable option
Name Value
──────────── ──────────
Unicode U+0156
Hex code Ŗ
HTML code Ŗ
Named entity Ŗ
CSS code \0156
Meaning Latin capital letter R with cedilla
Related U+0157 = ŗ (ŗ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase R cedilla (Ŗ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0156";
}
</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 cedilla (Ŗ) and the named entity Ŗ are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase R cedilla (Ŗ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ŗ uses the Unicode hexadecimal value 0156 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ŗ uses the decimal Unicode value 342 to display the same character. A common method when a numeric reference is needed.
Named Entity
Ŗ is the named entity for R cedilla—readable in source HTML and the preferred option when clarity matters.
CSS Entity
\0156 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+0156 sits in Latin Extended-A. Lowercase equivalent: U+0157 (ŗ, ŗ). Do not confuse with plain R (U+0052), Ř (caron), or Ŕ (acute).
Use Cases
The uppercase R cedilla (Ŗ) is commonly used in:
Pre-1946 Latvian orthography and archival texts that preserve the original spelling with Ŗ at word starts.
Phonetic notation, transliteration, and scholarly publications referencing Baltic languages.
Digital editions of historical Latvian literature, dictionaries, and cultural heritage content.
Support proper rendering of historical Latvian names and place names on international websites.
When building HTML from CMS or database content, using Ŗ or Ŗ guarantees correct output.
Using the correct character (U+0156) with proper lang attributes ensures assistive technologies handle content correctly.
Using \0156 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 appropriate
langattributes on historical Latvian content - Use
\0156in CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ŗ (cedilla) from Ř (caron), Ŕ (acute), and plain R (U+0052)
Don’t
- Substitute plain
Rwhen Ŗ is required in historical Latvian text - Confuse Ŗ (cedilla) with Ř (caron) or Ŕ (acute)
- Put CSS escape
\0156in HTML text nodes - Use
\00156in CSS—the correct escape is\0156 - Assume modern Latvian uses Ŗ—it was removed from the standard alphabet in 1946
Key Takeaways
The named entity is the most readable form
ŖNumeric alternatives: hex and decimal
Ŗ ŖUnicode U+0156 — LATIN CAPITAL LETTER R WITH CEDILLA
Used in Latvian historical orthography; lowercase is ŗ (ŗ)
Previous: Uppercase R Caron (Ř) Next: Uppercase R Double Grave
❓ Frequently Asked Questions
Ŗ (named), Ŗ (hex), Ŗ (decimal), or \0156 in CSS content. In UTF-8 you can also type Ŗ directly.U+0156 (LATIN CAPITAL LETTER R WITH CEDILLA). Latin Extended-A block. Hex 0156, decimal 342. Used in Latvian historical orthography and linguistic text. Lowercase form is U+0157 (ŗ).Ŗ. You can also use Ŗ or Ŗ, or the CSS entity \0156.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
