HTML Entity for Uppercase R Latin Long Leg (Ʀ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+01A6

What Is the Uppercase R Latin Long Leg Entity?

Uppercase R Latin Long Leg (Ʀ) is the Unicode character at U+01A6 (LATIN LETTER YR) in Latin Extended-B. It is a single letter related to a historical yr digraph form — not ordinary capital R.

Remember
Character     Ʀ
Unicode       U+01A6
Hex entity    Ʀ
Decimal       Ʀ
CSS escape    \01A6
Named entity  (none)
Official name LATIN LETTER YR
Also called   R with long leg (informal)

All of these produce the same glyph: Ʀ. Compare with Uppercase R (U+0052) and Uppercase R Latin (U+0280).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterƦHTML text (UTF-8)
Hex entityƦHTML markup
Decimal entityƦHTML markup
CSS escape\01A6Stylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Need LATIN LETTER YRType the character, or Ʀ / Ʀ
Generated text via ::before / ::aftercontent: "\01A6"
Ordinary capital letter RUse R (U+0052)
IPA small capital RUse ʀ (U+0280)
Looking for a named entityNone for U+01A6 — use numeric form

Live Preview

Latin letter YR in common comparison contexts.

Large glyph Ʀ
Compared R Ʀ ʀ
In sentence Letter: Ʀ (LATIN LETTER YR)
Label YR letter / R long leg
With entities Hex: Ʀ | Decimal: Ʀ

Complete HTML Example

One page that shows this character with hex, decimal, CSS, and a comparison. Use View Output or open the live editor.

Hex + Decimal + CSS + Compare

All ways to produce Ʀ in a single document, plus a comparison with plain R.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase R Latin Long Leg</title>
  <style>
    #point::after {
      content: "\01A6";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x01A6;</p>
  <p>Using HTML Code: &#422;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: &#x01A6;</p>
  <p>Compare: R &#x01A6; &#x0280;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+01A6 → &#x01A6; in HTML. The browser turns it into the glyph.

2. Decimal: same code point as 422 → &#422;. Same result as hex.

3. CSS: use \01A6 in content (not an HTML entity). #point::after appends that glyph after the paragraph text.

4. Compare: plain R, YR letter Ʀ, and IPA small capital ʀ are three different characters.

Pitfalls & Tips

Common mistakes when working with this character.

Named?

No named entity

HTML5 does not define a named entity for U+01A6. Use numeric forms.

Look-alikes

Not plain R or IPA ʀ

U+01A6 is LATIN LETTER YR. Do not substitute plain R (U+0052) or IPA small capital ʀ (U+0280).

Name

Official name is YR

Unicode calls it LATIN LETTER YR. “R latin long leg” is an informal site label for the same glyph.

Fonts

Check Extended-B coverage

Some fonts omit U+01A6. Prefer fonts with good Latin Extended-B support.

CSS vs HTML

Do not mix escapes

\01A6 belongs in CSS. &#x01A6; / &#422; belong in HTML.

Semicolon

End references

Always finish with ; — write &#422;, not &#422.

Browser Support

Uppercase R Latin Long Leg / LATIN LETTER YR (U+01A6) and its numeric entity forms (&#x01A6;, &#422;, CSS \\01A6) are supported in all mainstream browsers. Glyph shape depends on Latin Extended-B font coverage.

✓ Universal support

Uppercase R Latin Long Leg

Encode with hex, decimal, or CSS escape — or paste the character in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+01A6 / entities Full support

Bottom line: Use &#x01A6; or &#422; for the Unicode glyph, and \\01A6 only inside CSS content. Prefer fonts with Latin Extended-B support.

Key Takeaways

  • Unicode: this character is U+01A6 (decimal 422) — LATIN LETTER YR.
  • HTML: use &#x01A6; or &#422; — there is no named entity.
  • CSS: use \01A6 inside content for generated text.
  • Watch out: U+01A6 ≠ U+0052 (plain R) ≠ U+0280 (IPA ʀ).

One line: U+01A6 → &#x01A6; / &#422; / CSS \01A6.

Frequently Asked Questions

Use &#x01A6; (hex), &#422; (decimal), or the CSS escape \01A6 in the content property. All render U+01A6. You can also paste the character directly when your file is UTF-8.
U+01A6 (hex 01A6, decimal 422). Unicode names it LATIN LETTER YR. It belongs to Latin Extended-B and appears in African orthographies and linguistic notation related to a yr digraph form.
No. HTML5 does not define a named entity for this character. Use numeric references like &#x01A6; or &#422;.
U+01A6 is LATIN LETTER YR (Ʀ). U+0052 is ordinary capital R. U+0280 is LATIN LETTER SMALL CAPITAL R (ʀ) used in IPA. They are different characters.
Use it when an orthography or linguistic source requires the YR letter specifically — not as a visual substitute for plain R or IPA small capital R.
HTML entities (&#422; or &#x01A6;) go in markup. The CSS escape \01A6 is used in stylesheets (usually in the content property of ::before/::after). Both render the same glyph.

Did you know?

This character is Unicode U+01A6 (decimal 422) — official name LATIN LETTER YR in Latin Extended-B. HTML5 has no named entity. It is a single letter historically related to a yr digraph form, used in some African orthographies and linguistic notation. It is not the same as plain R (U+0052).

Next: Uppercase R Reverse Latin

Learn the HTML entity for Uppercase R Reverse Latin — next in this sequence.

Continue tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful