HTML Entity for R with Fishhook (ɾ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+027E

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

Unicode U+027E

IPA Extensions

Hex Code ɾ

Hexadecimal reference

HTML Code ɾ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the r with fishhook (ɾ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x027E;</p>
<p>Symbol (decimal): &#638;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The r with fishhook (ɾ) is supported in all modern browsers as part of IPA Extensions:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the r with fishhook (ɾ) in phonetic and typographic contexts:

Large glyphɾ
IPA meaningAlveolar tap or flap (single-tap “r”)
ExampleSpanish pero → /pɛɾo/  |  Korean alveolar tap
Unicode blockIPA Extensions (U+0250–U+02AF)
Not the same asɺ (lateral flap)  |  ɻ (retroflex)  |  ɹ (turned r)  |  r (plain r)
Numeric refs&#x027E; &#638; \27E

🧠 How It Works

1

Hexadecimal Code

&#x027E; uses the Unicode hexadecimal value 027E to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#638; uses the decimal Unicode value 638 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

CSS Entity

\27E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

🎤 IPA Transcription

The standard IPA symbol for the alveolar tap or flap in Spanish, Korean, and many Austronesian and African languages.

📚 Language Learning

Spanish pronunciation guides, Korean phonology courses, and apps teaching tap vs. trill distinctions.

📐 Typography

When a font or design includes this IPA character for linguistic or decorative use. Use the entity to output it in HTML or CSS.

⚙ Programmatic HTML

When building HTML from phonetic databases or linguistic APIs, using &#638; or &#x027E; guarantees correct output.

📜 Academic Writing

Linguistics papers, phonology textbooks, and speech-science documentation referencing the alveolar tap.

♿ Accessibility

Using the correct character (U+027E) ensures assistive technologies handle phonetic content correctly.

🎨 CSS Generated Content

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 (&#x027E; or &#638;) when escaping is required
  • Use \27E in CSS content when 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+0027E or CSS \0027E—the correct code is U+027E and \27E
  • Put CSS escape \27E in HTML text nodes

Key Takeaways

1

Three references render ɾ (no named entity)

&#x027E; &#638;
2

For CSS stylesheets, use the escape in the content property

\27E
3

Unicode U+027E — LATIN SMALL LETTER R WITH FISHHOOK

4

IPA alveolar tap/flap; Spanish /pɛɾo/ (pero)

❓ Frequently Asked Questions

Use &#x027E; (hex), &#638; (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.
When displaying IPA transcriptions for Spanish, Korean, Austronesian languages, linguistic dictionaries, language-learning content, or documentation. In UTF-8 pages you can type ɾ directly.
No. There is no named HTML entity for r with fishhook (ɾ). Use numeric codes &#638; or &#x027E;, or the CSS entity \27E. In UTF-8 pages you can type ɾ directly.
ɾ (U+027E) is the alveolar tap or flap—used in Spanish “pero” and many languages. ɺ (U+027A) is r with turned leg—the alveolar lateral flap in Japanese ら. They are distinct IPA symbols despite similar shapes.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA symbols, letters, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful