HTML Entity for R Reverse Solidus (ɿ)

What You'll Learn
How to display the r reverse solidus (ɿ) in HTML using hexadecimal, decimal, and CSS escape methods. Officially LATIN SMALL LETTER REVERSE SOLIDUS, this IPA Extensions symbol is also listed in entity references as “reverse fishhook r.” The character is U+027F in the IPA Extensions block. Despite the legacy URL slug, this is a lowercase IPA letter, not an uppercase J.
Render it with ɿ, ɿ, or CSS escape \27F. There is no named HTML entity for this character. In UTF-8 documents you can also type ɿ directly.
⚡ Quick Reference — R Reverse Solidus Entity
U+027FIPA Extensions
ɿHexadecimal reference
ɿDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+027F
Hex code ɿ
HTML code ɿ
Named entity (none)
CSS code \27F
Meaning Latin small letter r reverse solidus
Also known as Reverse fishhook r
Related U+027E = ɾ (r with fishhook)
U+027B = ɻ (retroflex approximant)
U+0279 = ɹ (turned r)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the r reverse solidus (ɿ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\27F";
}
</style>
</head>
<body>
<p>Symbol (hex): ɿ</p>
<p>Symbol (decimal): ɿ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The r reverse solidus (ɿ) is supported in all modern browsers as part of IPA Extensions:
👀 Live Preview
See the r reverse solidus (ɿ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ɿ uses the Unicode hexadecimal value 027F to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɿ uses the decimal Unicode value 639 to display the same character. A common method when a numeric reference is needed.
CSS Entity
\27F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ɿ. Unicode U+027F sits in IPA Extensions. Do not confuse with ɾ (r with fishhook) or ɻ (retroflex approximant).
Use Cases
The r reverse solidus (ɿ) is commonly used in:
Phonetic notation in IPA Extensions for specialized linguistic transcriptions.
Pronunciation guides and phonology courses teaching extended IPA symbols.
When a font or design includes this IPA character for linguistic or decorative use.
When building HTML from phonetic databases, using ɿ or ɿ guarantees correct output.
Linguistics papers, phonology textbooks, and speech-science documentation.
Using the correct character (U+027F) ensures assistive technologies handle phonetic content correctly.
Using \27F 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 r reverse solidus, not ɾ (fishhook) or ɻ (retroflex)
- Use numeric references (
ɿorɿ) when escaping is required - Use
\27Fin CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support IPA Extensions (e.g. Doulos SIL, Charis SIL)
Don’t
- Label this as uppercase J—the correct glyph is ɿ (U+027F), a lowercase IPA letter
- Confuse ɿ with ɾ (r with fishhook) or ɻ (retroflex approximant)
- Expect a named HTML entity—none exists for ɿ
- Use
U+0027For CSS\0027F—the correct code isU+027Fand\27F - Put CSS escape
\27Fin HTML text nodes
Key Takeaways
Three references render ɿ (no named entity)
ɿ ɿFor CSS stylesheets, use the escape in the content property
\27FUnicode U+027F — LATIN SMALL LETTER REVERSE SOLIDUS
Also known as reverse fishhook r in entity references
Previous: Uppercase J Middle Stroke (Ɉ) Next: Uppercase K
❓ Frequently Asked Questions
ɿ (hex), ɿ (decimal), or \27F in CSS content. There is no named HTML entity for ɿ. In UTF-8 you can also type ɿ directly.U+027F (LATIN SMALL LETTER REVERSE SOLIDUS). IPA Extensions block. Hex 027F, decimal 639. Used in phonetic and linguistic notation.ɿ or ɿ, or the CSS entity \27F. 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
