HTML Entity for Uppercase R Latin Long Leg (Ʀ)

What You'll Learn
How to display the uppercase r latin long leg (Ʀ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+01A6 (LATIN LETTER YR) in the Latin Extended-B block. The glyph resembles an uppercase R with a long leg and is used in African orthographies and linguistic transcription to represent the yr sound unit.
Render it with Ʀ, Ʀ, or CSS escape \01A6. There is no named HTML entity. Do not confuse with ʀ (U+0280, IPA small capital R) or ɼ (U+027C, lowercase r with long leg).
⚡ Quick Reference — Uppercase R Latin Long Leg Entity
U+01A6Latin Extended-B
ƦHexadecimal reference
ƦDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01A6
Hex code Ʀ
HTML code Ʀ
Named entity (none)
CSS code \01A6
Unicode name LATIN LETTER YR
Meaning yr digraph unit (African orthographies)
Related U+0280 = ʀ (IPA small capital R)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase r latin long leg (Ʀ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01A6";
}
</style>
</head>
<body>
<p>Symbol (hex): Ʀ</p>
<p>Symbol (decimal): Ʀ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase r latin long leg (Ʀ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase r latin long leg (Ʀ) in linguistic and typographic contexts:
🧠 How It Works
Hexadecimal Code
Ʀ uses the Unicode hexadecimal value 01A6 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ʀ uses the decimal Unicode value 422 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01A6 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Use Cases
The uppercase r latin long leg (Ʀ) is commonly used in:
Writing systems that use LATIN LETTER YR for the yr sound unit in African languages.
Phonological and orthographic notation requiring the yr digraph as a single letterform.
Scholarly publications and language documentation referencing this specialized Latin letter.
When building HTML from linguistic databases, using Ʀ or Ʀ guarantees correct output.
Digital editions and font specimens showcasing Latin Extended-B coverage.
Online dictionaries, corpora, and educational content for languages using yr notation.
Using \01A6 in the CSS content property to insert Ʀ via pseudo-elements.
💡 Best Practices
Do
- Use
ƦorƦin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ʀ directly in UTF-8 source
- Use fonts that include Latin Extended-B (U+0180–U+024F) for reliable rendering
- Distinguish Ʀ (LATIN LETTER YR) from ʀ (IPA small capital R) and plain
R - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for Ʀ
- Substitute plain
Rwhen Ʀ is required in orthographic text - Confuse Ʀ (Latin Extended-B) with ʀ (IPA Extensions) or ɼ (lowercase long leg)
- Put CSS escape
\01A6in HTML text nodes - Use
\001A6in CSS—the correct escape is\01A6
Key Takeaways
Three references render Ʀ (no named entity)
Ʀ ƦFor CSS stylesheets, use the escape in the content property
\01A6Unicode U+01A6 — LATIN LETTER YR
Latin Extended-B; used for yr in African orthographies and linguistics
Previous: Uppercase R Latin (ʀ) Next: Uppercase R Reverse Latin
❓ Frequently Asked Questions
Ʀ (hex), Ʀ (decimal), or \01A6 in CSS content. There is no named HTML entity for this character. In UTF-8 you can also type Ʀ directly.U+01A6 (LATIN LETTER YR). Latin Extended-B block. Hex 01A6, decimal 422. Used in African orthographies and linguistic transcription for the yr digraph unit.Ʀ or Ʀ) is used in HTML content. The CSS entity (\01A6) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ʀ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, phonetic symbols, and more.
8 people found this page helpful
