HTML Entity for Uppercase R Latin (ʀ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0280

What You'll Learn

How to display the uppercase r latin (ʀ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0280 (LATIN LETTER SMALL CAPITAL R)—an IPA phonetic symbol used as the capital form of r in phonetic notation. It sits in the IPA Extensions block.

Render it with ʀ, ʀ, or CSS escape \0280. There is no named HTML entity for this character. In IPA it represents the voiced uvular trill. Do not confuse with ʁ (uvular fricative) or ͬ (combining Latin small letter r).

⚡ Quick Reference — Uppercase R Latin Entity

Unicode U+0280

IPA Extensions

Hex Code ʀ

Hexadecimal reference

HTML Code ʀ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0280
Hex code       ʀ
HTML code      ʀ
Named entity   (none)
CSS code       \0280
Meaning        Latin letter small capital R
IPA use        Voiced uvular trill
Related        U+0281 = ʁ (uvular fricative)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the uppercase r latin (ʀ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0280";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0280;</p>
<p>Symbol (decimal): &#640;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase r latin (ʀ) renders correctly in modern browsers when UTF-8 is used and the font supports IPA Extensions:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase r latin (ʀ) in phonetic and typographic contexts:

Large glyphʀ
IPA meaningVoiced uvular trill (International Phonetic Alphabet)
Unicode nameLATIN LETTER SMALL CAPITAL R (used as IPA capital R)
Not the same asplain R (U+0052)  |  ʁ (uvular fricative)  |  ͬ (combining r, U+036C)
Numeric refs&#x0280; &#640; \0280

🧠 How It Works

1

Hexadecimal Code

&#x0280; uses the Unicode hexadecimal value 0280 to display the uppercase r latin. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#640; uses the decimal Unicode value 640 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

\0280 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ʀ. Unicode U+0280 sits in IPA Extensions. There is no named HTML entity. Do not confuse with plain R (U+0052), ʁ (uvular fricative), or the combining mark ͬ (U+036C).

Use Cases

The uppercase r latin (ʀ) is commonly used in:

🎤 Phonetic transcription

IPA notation, pronunciation guides, and linguistic research requiring the voiced uvular trill.

📚 IPA notation

International Phonetic Alphabet documentation, textbooks, and academic papers with accurate consonant symbols.

📚 Linguistic content

Language research papers, documentation, and databases requiring proper IPA character representation.

📄 Academic papers

Scholarly publications and phonetic analysis documents discussing uvular consonants.

📖 Language learning

Educational websites and apps that teach phonetic notation and pronunciation of uvular sounds.

📖 Dictionary entries

Dictionary interfaces and pronunciation tools needing accurate phonetic glyphs.

⚙ Font testing

Character set demonstrations and Unicode showcases for IPA Extensions coverage.

💡 Best Practices

Do

  • Use &#640; or &#x0280; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ʀ directly in UTF-8 source
  • Use fonts that support IPA Extensions (U+0250–U+02AF), e.g. Doulos SIL or Charis SIL
  • Distinguish ʀ (IPA small capital R) from plain R (U+0052) and ʁ (uvular fricative)
  • Pick one numeric style (hex or decimal) per project for consistency

Don’t

  • Assume a named entity exists—there is none for ʀ
  • Substitute plain R or r when ʀ is required in IPA text
  • Confuse ʀ (uvular trill) with ʁ (uvular fricative)
  • Confuse ʀ with ͬ (combining Latin small letter r, U+036C)
  • Put CSS escape \0280 in HTML text nodes

Key Takeaways

1

Three references render ʀ (no named entity)

&#x0280; &#640;
2

For CSS stylesheets, use the escape in the content property

\0280
3

Unicode U+0280 — LATIN LETTER SMALL CAPITAL R

4

IPA Extensions; represents the voiced uvular trill in phonetic notation

❓ Frequently Asked Questions

Use &#x0280; (hex), &#640; (decimal), or \0280 in CSS content. There is no named HTML entity for this character.
U+0280 (LATIN LETTER SMALL CAPITAL R). IPA Extensions block. Hex 0280, decimal 640. Used in IPA phonetic notation for the voiced uvular trill.
In phonetic transcriptions, IPA notation, linguistic content, academic texts, language learning materials, dictionary entries, and any content requiring the IPA small capital R glyph.
HTML code (&#640; or &#x0280;) is used in HTML content. The CSS entity (\0280) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ʀ but in different contexts.
ʀ is a small capital R, visually distinct from regular uppercase R and lowercase r. In IPA it represents the voiced uvular trill—a specific phonetic sound, not the ordinary letter R. Do not confuse with ʁ (uvular fricative) or ͬ (combining Latin small letter r, U+036C).

Explore More HTML Entities!

Discover 1500+ HTML character references — extended Latin, phonetic symbols, and more.

All HTML Entities →

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