HTML Entity for Lowercase R Stroke (ɍ)

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

What You'll Learn

How to display the lowercase r with stroke (ɍ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+024D in the Latin Extended-B block. It appears in the African Reference Alphabet and in phonetic transcription for African languages and linguistic documentation.

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

⚡ Quick Reference — Lowercase R Stroke Entity

Unicode U+024D

Latin Extended-B

Hex Code ɍ

Hexadecimal reference

HTML Code ɍ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+024D
Hex code       ɍ
HTML code      ɍ
Named entity   (none)
CSS code       \024D
Meaning        Latin small letter r with stroke
Related        U+024C = Ɍ (uppercase)
               U+0072 = r (plain letter)
               U+0157 = ŗ (r with cedilla)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase r stroke (ɍ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\024D";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x024D;</p>
<p>Symbol (decimal): &#589;</p>
<p>Symbol (direct): ɍ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase r stroke (ɍ) is supported in all modern browsers as part of Latin Extended-B:

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

👀 Live Preview

See the lowercase r stroke (ɍ) in phonetic and typographic contexts:

Large glyphɍ
Primary useAfrican Reference Alphabet and phonetic transcription for African languages
Uppercase pairɌ (U+024C) — LATIN CAPITAL LETTER R WITH STROKE
Unicode blockLatin Extended-B (U+0180–U+024F)
Not the same asr (plain r)  |  ŗ (cedilla)  |  ɹ (turned r, IPA)  |  Ɍ (uppercase)
Numeric refs&#x024D; &#589; \024D

🧠 How It Works

1

Hexadecimal Code

&#x024D; uses the Unicode hexadecimal value 024D to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
4

CSS Entity

\024D 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+024D sits in Latin Extended-B. Uppercase pair: U+024C (Ɍ). Do not confuse with plain r or IPA symbols like ɹ.

Use Cases

The lowercase r stroke (ɍ) 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 &#589; or &#x024D; guarantees correct output.

📚 Documentation

Tutorials on HTML entities, Unicode, or Latin Extended-B showing numeric codes for ɍ.

♿ Accessibility

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

🎨 CSS Generated Content

Using \024D 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 (&#x024D; or &#589;) when escaping is required
  • Use \024D in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters
  • Note the uppercase pair Ɍ (U+024C) when working with mixed-case texts

Don’t

  • Expect a named HTML entity—none exists for ɍ
  • Confuse ɍ (r with stroke) with ŗ (r with cedilla) or ɹ (turned r, IPA)
  • Use U+0024D or CSS \0024D—the correct code is U+024D and \024D
  • Use Ɍ (Ɍ) when you need the lowercase form—that is the uppercase character
  • Put CSS escape \024D in HTML text nodes

Key Takeaways

1

Type ɍ directly, or use hex/decimal references

&#x024D; &#589;
2

For CSS stylesheets, use the escape in the content property

\024D
3

Unicode U+024D — LATIN SMALL LETTER R WITH STROKE

4

Latin Extended-B; African Reference Alphabet; uppercase is Ɍ

❓ Frequently Asked Questions

Use &#x024D; (hex), &#589; (decimal), or \024D in CSS content. There is no named HTML entity for ɍ. In UTF-8 you can also type ɍ directly.
U+024D (LATIN SMALL LETTER R WITH STROKE). Latin Extended-B block. Hex 024D, decimal 589. Uppercase pair is U+024C (Ɍ). Used in the African Reference Alphabet.
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 stroke (ɍ). Use numeric codes &#589; or &#x024D;, or the CSS entity \024D. In UTF-8 pages you can type ɍ directly.
HTML code (&#589; or &#x024D;) is used in HTML content; CSS entity \024D is used in stylesheets in the content property of pseudo-elements. Both produce ɍ.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, IPA symbols, 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