HTML Entity for Lowercase R Reverse Hook (ɻ)

What You'll Learn
How to display the lowercase r reverse hook (ɻ), officially r with fishhook, in HTML using hexadecimal, decimal, and CSS escape methods. This is the IPA symbol for the retroflex approximant—a curled-tip “r” sound found in Mandarin Chinese (e.g. “ri” /ɻi/), Hindi, Tamil, and Hiberno-English. The character is U+027B in the IPA Extensions block.
Render it with ɻ, ɻ, or CSS escape \27B. There is no named HTML entity for this character. In UTF-8 documents you can also type ɻ directly.
⚡ Quick Reference — Lowercase R Reverse Hook Entity
U+027BIPA Extensions
ɻHexadecimal reference
ɻDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+027B
Hex code ɻ
HTML code ɻ
Named entity (none)
CSS code \27B
Meaning Latin small letter r with fishhook
IPA use Retroflex approximant
Related U+0279 = ɹ (turned r)
U+027A = ɺ (r with turned leg)
U+0271 = ɱ (r with hook)
U+027C = ɼ (r long leg)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase r reverse hook (ɻ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\27B";
}
</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 hook (ɻ) is supported in all modern browsers as part of IPA Extensions:
👀 Live Preview
See the lowercase r reverse hook (ɻ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ɻ uses the Unicode hexadecimal value 027B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɻ uses the decimal Unicode value 635 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
\27B 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+027B sits in IPA Extensions. Do not confuse with ɹ (turned r/alveolar) or ɱ (r with hook).
Use Cases
The lowercase r reverse hook (ɻ) is commonly used in:
The standard IPA symbol for the retroflex approximant in Mandarin Chinese, Hindi, Tamil, and other languages with curled-tip r sounds.
Mandarin pinyin-to-IPA guides, Indic language courses, and pronunciation apps teaching retroflex consonants.
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 retroflex approximant.
Using the correct character (U+027B) ensures assistive technologies handle phonetic content correctly.
Using \27B 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 retroflex approximant, not ɹ (alveolar approximant)
- Use numeric references (
ɻorɻ) when escaping is required - Use
\27Bin 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 ɻ (fishhook/retroflex) with ɹ (turned r/alveolar) or ɱ (hook)
- Use
U+0027Bor CSS\0027B—the correct code isU+027Band\27B - Put CSS escape
\27Bin HTML text nodes - Double-encode numeric references in dynamically generated HTML
Key Takeaways
Type ɻ directly, or use hex/decimal references
ɻ ɻFor CSS stylesheets, use the escape in the content property
\27BUnicode U+027B — LATIN SMALL LETTER R WITH FISHHOOK
IPA retroflex approximant; Mandarin /ɻi/ (ri)
Previous: Lowercase R Reverse (ɹ) Next: Lowercase R Reverse Long Leg (ɺ)
❓ Frequently Asked Questions
ɻ (hex), ɻ (decimal), or \27B in CSS content. There is no named HTML entity for ɻ. In UTF-8 you can also type ɻ directly.U+027B (LATIN SMALL LETTER R WITH FISHHOOK). IPA Extensions block. Hex 027B, decimal 635. It is the IPA symbol for the retroflex approximant.ɻ or ɻ, or the CSS entity \27B. 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
