HTML Entity for Lowercase R Long Leg (ɼ)

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

What You'll Learn

How to display the lowercase r with long leg (ɼ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+027C in the IPA Extensions block. It appears in the African Reference Alphabet and in phonetic transcription for African languages and linguistic documentation.

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

⚡ Quick Reference — Lowercase R Long Leg Entity

Unicode U+027C

IPA Extensions

Hex Code ɼ

Hexadecimal reference

HTML Code ɼ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+027C
Hex code       ɼ
HTML code      ɼ
Named entity   (none)
CSS code       \027C
Meaning        Latin small letter r with long leg
Related        U+0271 = ɱ (r with hook)
               U+0279 = ɹ (turned r)
               U+02AE = ʮ (turned r long leg)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase r 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: "\027C";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x027C;</p>
<p>Symbol (decimal): &#636;</p>
<p>Symbol (direct): ɼ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase r 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 long leg (ɼ) in phonetic and typographic contexts:

Large glyphɼ
Primary useAfrican Reference Alphabet and phonetic transcription for African languages
Unicode blockIPA Extensions (U+0250–U+02AF)
Not the same asr (plain r)  |  ɱ (hook)  |  ɹ (turned r)  |  ʮ (turned r long leg)
Numeric refs&#x027C; &#636; \027C

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#636; uses the decimal Unicode value 636 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 phonetic letter.

HTML markup
4

CSS Entity

\027C 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+027C sits in IPA Extensions. Do not confuse with r (plain r), ɱ (hook), ɹ (turned r), or ʮ (turned r long leg).

Use Cases

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

🌎 African Reference Alphabet

Used in the standardized African Reference Alphabet for phonetic transcription of African languages in educational and linguistic materials.

🎤 Phonetic Transcription

Appears in linguistic dictionaries, language documentation, and academic papers describing African language phonology.

📐 Typography

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

⚙ Programmatic HTML

When building HTML from linguistic databases or phonetic data, using &#636; or &#x027C; guarantees correct output.

📚 Documentation

Tutorials on HTML entities, Unicode, or IPA Extensions showing numeric codes for ɼ.

♿ Accessibility

Using the correct character (U+027C) ensures assistive technologies interpret phonetic or linguistic content correctly.

🎨 CSS Generated Content

Using \027C 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 numeric references (&#x027C; or &#636;) when escaping is required
  • Use \027C in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support IPA Extensions characters
  • Distinguish ɼ from ɹ (turned r) and ʮ (turned r long leg) in phonetic text

Don’t

  • Expect a named HTML entity—none exists for ɼ
  • Confuse ɼ (r long leg) with r (plain r), ɱ (hook), or ɹ (turned r)
  • Use U+0027C or CSS \0027C—the correct code is U+027C and \027C
  • Put CSS escape \027C in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ɼ directly, or use hex/decimal references

&#x027C; &#636;
2

For CSS stylesheets, use the escape in the content property

\027C
3

Unicode U+027C — LATIN SMALL LETTER R WITH LONG LEG

4

IPA Extensions block; used in African Reference Alphabet transcription

❓ Frequently Asked Questions

Use &#x027C; (hex), &#636; (decimal), or \027C in CSS content. There is no named HTML entity for ɼ. In UTF-8 you can also type ɼ directly.
U+027C (LATIN SMALL LETTER R WITH LONG LEG). IPA Extensions block. Hex 027C, decimal 636. Used in the African Reference Alphabet and phonetic transcription.
When displaying African Reference Alphabet text, phonetic or linguistic content, typography samples, documentation, or when you need an explicit character reference. In UTF-8 pages you can type ɼ directly.
No. There is no named HTML entity for the lowercase r long leg (ɼ). Use numeric codes &#636; or &#x027C;, or the CSS entity \027C. In UTF-8 pages you can type ɼ directly.
HTML code (&#636; or &#x027C;) is used in HTML content; CSS entity \027C is used in stylesheets in the content property of pseudo-elements. Both produce ɼ.

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