HTML Entity for Lowercase R Reverse Long Leg (ɺ)

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

What You'll Learn

How to display the lowercase r reverse long leg (ɺ), officially r with turned leg, in HTML using hexadecimal, decimal, and CSS escape methods. This is the IPA symbol for the alveolar lateral flap—a tap-like “r” sound used in Japanese (e.g. ら /➪/), Korean, and many Austronesian languages. The character is U+027A in the IPA Extensions block.

Render it with ɺ, ɺ, or CSS escape \27A. There is no named HTML entity for this character. In UTF-8 documents you can also type ɺ directly.

⚡ Quick Reference — Lowercase R Reverse Long Leg Entity

Unicode U+027A

IPA Extensions

Hex Code ɺ

Hexadecimal reference

HTML Code ɺ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+027A
Hex code       ɺ
HTML code      ɺ
Named entity   (none)
CSS code       \27A
Meaning        Latin small letter r with turned leg
IPA use        Alveolar lateral flap
Related        U+0279 = ɹ (turned r)
               U+027B = ɻ (r with fishhook)
               U+027C = ɼ (r long leg)
               U+02AE = ʮ (turned r long leg)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase r reverse long leg (ɺ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

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

🌐 Browser Support

The lowercase r reverse long leg (ɺ) is supported in all modern browsers as part of IPA Extensions:

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

👀 Live Preview

See the lowercase r reverse long leg (ɺ) in phonetic and typographic contexts:

Large glyphɺ
IPA meaningAlveolar lateral flap (tap-like r)
ExampleJapanese ら → /➪/  |  Korean “r” allophone
Unicode blockIPA Extensions (U+0250–U+02AF)
Not the same asɹ (turned r)  |  ɻ (fishhook)  |  ʮ (turned r long leg)  |  ɼ (r long leg)
Numeric refs&#x027A; &#634; \27A

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Direct Character

Type ɺ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this IPA symbol.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: ɺ. Unicode U+027A sits in IPA Extensions. Do not confuse with ʮ (turned r long leg) or ɹ (turned r).

Use Cases

The lowercase r reverse long leg (ɺ) is commonly used in:

🇯🇵 Japanese Phonetics

Standard IPA transcription for the Japanese “r” sound in ら (ra), る (ru), and related morae—the alveolar lateral flap.

🎤 IPA Transcription

Phonetic notation for Korean, Austronesian, and other languages where a tap-like lateral r occurs between vowels.

📚 Language Learning

Japanese and Korean pronunciation guides, linguistics textbooks, and apps teaching non-English r sounds.

⚙ Programmatic HTML

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

📜 Academic Writing

Linguistics papers and phonology documentation referencing the alveolar lateral flap symbol.

♿ Accessibility

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

🎨 CSS Generated Content

Using \27A 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 alveolar lateral flap, not ɹ (alveolar approximant)
  • Use numeric references (&#x027A; or &#634;) when escaping is required
  • Use \27A 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 ɺ (r with turned leg) with ʮ (turned r with long leg)
  • Use ɹ when you mean the Japanese/Korean flap sound—that is ɺ
  • Use U+0027A or CSS \0027A—the correct code is U+027A and \27A
  • Put CSS escape \27A in HTML text nodes

Key Takeaways

1

Type ɺ directly, or use hex/decimal references

&#x027A; &#634;
2

For CSS stylesheets, use the escape in the content property

\27A
3

Unicode U+027A — LATIN SMALL LETTER R WITH TURNED LEG

4

IPA alveolar lateral flap; Japanese ら /➪/

❓ Frequently Asked Questions

Use &#x027A; (hex), &#634; (decimal), or \27A in CSS content. There is no named HTML entity for ɺ. In UTF-8 you can also type ɺ directly.
U+027A (LATIN SMALL LETTER R WITH TURNED LEG). IPA Extensions block. Hex 027A, decimal 634. It is the IPA symbol for the alveolar lateral flap.
When displaying IPA transcriptions for Japanese, 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 the lowercase r reverse long leg (ɺ). Use numeric codes &#634; or &#x027A;, or the CSS entity \27A. In UTF-8 pages you can type ɺ directly.
ɺ (U+027A) is r with turned leg—the IPA alveolar lateral flap used in Japanese. ʮ (U+02AE) is turned r with long leg—a completely different IPA symbol. They look similar but represent different sounds.

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