HTML Entity for Lowercase R Reverse (ɹ)

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
U+0279IPA Extensions
ɹHexadecimal reference
ɹDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\279";
}
</style>
</head>
<body>
<p>Symbol (hex): ɹ</p>
<p>Symbol (decimal): ɹ</p>
<p>Symbol (direct): ɹ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase r reverse (ɹ) is supported in all modern browsers as part of IPA Extensions:
👀 Live Preview
See the lowercase r reverse (ɹ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ɹ uses the Unicode hexadecimal value 0279 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɹ uses the decimal Unicode value 633 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type ɹ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this IPA symbol.
CSS Entity
\279 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
The standard IPA symbol for the alveolar approximant in English, Irish, and many other languages. Essential for accurate phonetic notation.
Dictionary entries, language-learning apps, and ESL materials showing how words like “red” (/ɹɛd/) are pronounced.
When a font or design includes this IPA character for linguistic or decorative use. Use the entity to output it in HTML or CSS.
When building HTML from phonetic databases or linguistic APIs, using ɹ or ɹ guarantees correct output.
Linguistics papers, phonology textbooks, and speech-science documentation referencing the alveolar approximant symbol.
Using the correct character (U+0279) ensures assistive technologies and screen readers handle phonetic content correctly.
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 (
ɹorɹ) when escaping is required - Use
\279in CSScontentwhen 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+00279or CSS\00279—the correct code isU+0279and\279 - Put CSS escape
\279in HTML text nodes
Key Takeaways
Type ɹ directly, or use hex/decimal references
ɹ ɹFor CSS stylesheets, use the escape in the content property
\279Unicode U+0279 — LATIN SMALL LETTER TURNED R
IPA alveolar approximant; English “r” in /ɹɛd/ (red)
Previous: Lowercase R Long Leg (ɼ) Next: Lowercase R Reverse Hook (ɻ)
❓ Frequently Asked Questions
ɹ (hex), ɹ (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.ɹ or ɹ, or the CSS entity \279. In UTF-8 pages you can type ɹ directly.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.
8 people found this page helpful
