HTML Entity for R with Fishhook (ɾ)

What You'll Learn
How to display the r with fishhook (ɾ) in HTML using hexadecimal, decimal, and CSS escape methods. This is the IPA symbol for the alveolar tap or flap—a single-tap “r” sound found in Spanish (e.g. “pero” /pɛɾo/), Korean, and many Austronesian languages. The character is U+027E 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 \27E. There is no named HTML entity for this character. In UTF-8 documents you can also type ɾ directly.
⚡ Quick Reference — R with Fishhook Entity
U+027EIPA Extensions
ɾHexadecimal reference
ɾDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+027E
Hex code ɾ
HTML code ɾ
Named entity (none)
CSS code \27E
Meaning Latin small letter r with fishhook
IPA use Alveolar tap or flap
Related U+027B = ɻ (retroflex approximant)
U+027A = ɺ (r with turned leg)
U+0279 = ɹ (turned r)
U+027D = ɽ (r with tail)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the r with fishhook (ɾ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\27E";
}
</style>
</head>
<body>
<p>Symbol (hex): ɾ</p>
<p>Symbol (decimal): ɾ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The r with fishhook (ɾ) is supported in all modern browsers as part of IPA Extensions:
👀 Live Preview
See the r with fishhook (ɾ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ɾ uses the Unicode hexadecimal value 027E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɾ uses the decimal Unicode value 638 to display the same character. A common method when a numeric reference is needed.
CSS Entity
\27E 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+027E sits in IPA Extensions. Do not confuse with ɺ (alveolar lateral flap) or ɻ (retroflex approximant).
Use Cases
The r with fishhook (ɾ) is commonly used in:
The standard IPA symbol for the alveolar tap or flap in Spanish, Korean, and many Austronesian and African languages.
Spanish pronunciation guides, Korean phonology courses, and apps teaching tap vs. trill distinctions.
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 tap.
Using the correct character (U+027E) ensures assistive technologies handle phonetic content correctly.
Using \27E 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 alveolar tap/flap, not ɺ (alveolar lateral flap) or ɻ (retroflex)
- Use numeric references (
ɾorɾ) when escaping is required - Use
\27Ein 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 ɾ with ɺ (ɺ, alveolar lateral flap) or ɻ (retroflex approximant)
- Label this as uppercase J or ɺ—the correct glyph is ɾ (U+027E)
- Use
U+0027Eor CSS\0027E—the correct code isU+027Eand\27E - Put CSS escape
\27Ein HTML text nodes
Key Takeaways
Three references render ɾ (no named entity)
ɾ ɾFor CSS stylesheets, use the escape in the content property
\27EUnicode U+027E — LATIN SMALL LETTER R WITH FISHHOOK
IPA alveolar tap/flap; Spanish /pɛɾo/ (pero)
Previous: Uppercase J Circumflex (Ĵ) Next: Uppercase J Middle Stroke
❓ Frequently Asked Questions
ɾ (hex), ɾ (decimal), or \27E in CSS content. There is no named HTML entity for ɾ. In UTF-8 you can also type ɾ directly.U+027E (LATIN SMALL LETTER R WITH FISHHOOK). IPA Extensions block. Hex 027E, decimal 638. It is the IPA symbol for the alveolar tap or flap.ɾ or ɾ, or the CSS entity \27E. 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
