HTML Entity for Lowercase R Reverse (ɹ)

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

What You'll Learn

How to display the lowercase r reverse (ɹ), also called turned r, in HTML using hexadecimal, decimal, and CSS escape methods. This is the IPA symbol for the alveolar approximant—the English “r” sound in words like “red” (transcribed /ɹɛd/). The character is U+0279 in the IPA Extensions block.

Render it with ɹ, ɹ, or CSS escape \279. There is no named HTML entity for this character. In UTF-8 documents you can also type ɹ directly.

⚡ Quick Reference — Lowercase R Reverse Entity

Unicode U+0279

IPA Extensions

Hex Code ɹ

Hexadecimal reference

HTML Code ɹ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0279
Hex code       ɹ
HTML code      ɹ
Named entity   (none)
CSS code       \279
Meaning        Latin small letter turned r
IPA use        Alveolar approximant
Related        U+0072 = r (plain letter)
               U+027B = ɻ (r with fishhook)
               U+027C = ɼ (r long leg)
               U+02AE = ʮ (turned r long leg)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase r reverse (ɹ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\279";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0279;</p>
<p>Symbol (decimal): &#633;</p>
<p>Symbol (direct): ɹ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase r reverse (ɹ) is supported in all modern browsers as part of IPA Extensions:

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

👀 Live Preview

See the lowercase r reverse (ɹ) in phonetic and typographic contexts:

Large glyphɹ
IPA meaningAlveolar approximant (English “r” in General American)
Examplered → /ɹɛd/  |  run → /ɹʌn/
Unicode blockIPA Extensions (U+0250–U+02AF)
Not the same asr (plain r)  |  ɼ (long leg)  |  ɻ (fishhook)  |  ʮ (turned r long leg)
Numeric refs&#x0279; &#633; \279

🧠 How It Works

1

Hexadecimal Code

&#x0279; uses the Unicode hexadecimal value 0279 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#633; uses the decimal Unicode value 633 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type ɹ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this IPA symbol.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: ɹ. Unicode U+0279 sits in IPA Extensions. Do not confuse with r (plain letter r), ɼ (long leg), or ɻ (fishhook).

Use Cases

The lowercase r reverse (ɹ) is commonly used in:

🎤 IPA Transcription

The standard IPA symbol for the alveolar approximant in English, Irish, and many other languages. Essential for accurate phonetic notation.

📚 Pronunciation Guides

Dictionary entries, language-learning apps, and ESL materials showing how words like “red” (/ɹɛd/) are pronounced.

📐 Typography

When a font or design includes this IPA character for linguistic or decorative use. Use the entity to output it in HTML or CSS.

⚙ Programmatic HTML

When building HTML from phonetic databases or linguistic APIs, using &#633; or &#x0279; guarantees correct output.

📜 Academic Writing

Linguistics papers, phonology textbooks, and speech-science documentation referencing the alveolar approximant symbol.

♿ Accessibility

Using the correct character (U+0279) ensures assistive technologies and screen readers handle phonetic content correctly.

🎨 CSS Generated Content

Using \279 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 ɹ in IPA phonetic transcription instead of plain r
  • Use numeric references (&#x0279; or &#633;) when escaping is required
  • Use \279 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support IPA Extensions (e.g. Doulos SIL, Charis SIL)

Don’t

  • Expect a named HTML entity—none exists for ɹ
  • Use plain r (U+0072) when you mean the IPA alveolar approximant
  • Confuse ɹ (turned r) with ɼ (long leg) or ɻ (fishhook)
  • Use U+00279 or CSS \00279—the correct code is U+0279 and \279
  • Put CSS escape \279 in HTML text nodes

Key Takeaways

1

Type ɹ directly, or use hex/decimal references

&#x0279; &#633;
2

For CSS stylesheets, use the escape in the content property

\279
3

Unicode U+0279 — LATIN SMALL LETTER TURNED R

4

IPA alveolar approximant; English “r” in /ɹɛd/ (red)

❓ Frequently Asked Questions

Use &#x0279; (hex), &#633; (decimal), or \279 in CSS content. There is no named HTML entity for ɹ. In UTF-8 you can also type ɹ directly.
U+0279 (LATIN SMALL LETTER TURNED R). IPA Extensions block. Hex 0279, decimal 633. It is the IPA symbol for the alveolar approximant.
When displaying IPA phonetic transcriptions, pronunciation guides, linguistic dictionaries, language-learning content, or documentation. In UTF-8 pages you can type ɹ directly.
No. There is no named HTML entity for the lowercase r reverse (ɹ). Use numeric codes &#633; or &#x0279;, or the CSS entity \279. In UTF-8 pages you can type ɹ directly.
In IPA, ɹ (U+0279) represents the alveolar approximant—the English “r” sound. Plain r (U+0072) is an ordinary Latin letter, not a phonetic symbol. Use ɹ in phonetic transcription, not the typographic letter r.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA symbols, letters, 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