HTML Entity for Lowercase R Tail (ɽ)

What You'll Learn
How to display the lowercase r with tail (ɽ) in HTML using hexadecimal, decimal, and CSS escape methods. This is the IPA symbol for the retroflex flap—a tap-like retroflex sound used in Hindi, Punjabi, and other Indic languages (e.g. the “rd” sound in Hindi रद /ɽəd/). The character is U+027D in the IPA Extensions block.
Render it with ɽ, ɽ, or CSS escape \27D. There is no named HTML entity for this character. In UTF-8 documents you can also type ɽ directly.
⚡ Quick Reference — Lowercase R Tail Entity
U+027DIPA Extensions
ɽHexadecimal reference
ɽDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+027D
Hex code ɽ
HTML code ɽ
Named entity (none)
CSS code \27D
Meaning Latin small letter r with tail
IPA use Retroflex flap
Related U+027B = ɻ (r with fishhook)
U+0279 = ɹ (turned r)
U+0271 = ɱ (r with hook)
U+0072 = r (plain letter)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase r tail (ɽ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\27D";
}
</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 tail (ɽ) is supported in all modern browsers as part of IPA Extensions:
👀 Live Preview
See the lowercase r tail (ɽ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ɽ uses the Unicode hexadecimal value 027D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɽ uses the decimal Unicode value 637 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
\27D 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+027D sits in IPA Extensions. Do not confuse with ɻ (fishhook/approximant) or ɹ (turned r).
Use Cases
The lowercase r tail (ɽ) is commonly used in:
The standard IPA symbol for the retroflex flap in Hindi, Punjabi, and other Indic languages with tap-like retroflex consonants.
Hindi and Indic language courses, pronunciation guides, and apps teaching retroflex flap sounds.
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 Indic language documentation referencing the retroflex flap.
Using the correct character (U+027D) ensures assistive technologies handle phonetic content correctly.
Using \27D 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 ɽ for the retroflex flap, not ɻ (retroflex approximant)
- Use numeric references (
ɽorɽ) when escaping is required - Use
\27Din 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 ɽ
- Confuse ɽ (retroflex flap) with ɻ (fishhook) or ɹ (turned r)
- Use
U+0027Dor CSS\0027D—the correct code isU+027Dand\27D - Use plain
rwhen you mean the IPA retroflex flap symbol - Put CSS escape
\27Din HTML text nodes
Key Takeaways
Type ɽ directly, or use hex/decimal references
ɽ ɽFor CSS stylesheets, use the escape in the content property
\27DUnicode U+027D — LATIN SMALL LETTER R WITH TAIL
IPA retroflex flap; used in Indic language phonetic transcription
Previous: Lowercase R Stroke (ɍ) Next: Lowercase S
❓ Frequently Asked Questions
ɽ (hex), ɽ (decimal), or \27D in CSS content. There is no named HTML entity for ɽ. In UTF-8 you can also type ɽ directly.U+027D (LATIN SMALL LETTER R WITH TAIL). IPA Extensions block. Hex 027D, decimal 637. It is the IPA symbol for the retroflex flap.ɽ or ɽ, or the CSS entity \27D. In UTF-8 pages you can type ɽ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — IPA symbols, letters, and more.
8 people found this page helpful
