HTML Entity for Lowercase R Stroke (ɍ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+024D

What Is the Lowercase R Stroke Entity?

Lowercase r with stroke (ɍ) is the Unicode character at U+024D in Latin Extended-B. Official name: LATIN SMALL LETTER R WITH STROKE — the letter r with a horizontal bar, used in the African Reference Alphabet and phonetic transcription.

Remember
Character     ɍ
Unicode       U+024D
Hex entity    ɍ
Decimal       ɍ
CSS escape    \024D
Named entity  (none)
Capital       Ɍ (U+024C)
Not the same  r · ħ (ħ)

Prefer ɍ or ɍ in HTML when you need an entity. You can also type ɍ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entityɍHTML markup
Decimal entityɍHTML markup
Direct characterɍHTML text (UTF-8)
CSS escape\024DStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Need an entity in HTML sourceɍ or ɍ
African Reference Alphabet / phoneticsɍ → ɍ
Everyday letter rType r (U+0072) — see Lowercase R
H with stroke (ħ)See Lowercase H Stroke (ħ)
Uppercase R with strokeUppercase R Stroke (Ɍ, U+024C)
Generated text via ::before / ::aftercontent: "\024D"
Looking for a named entityDoes not exist — use numeric form

Live Preview

Glyph alone, in a sample line, and next to related forms.

Glyph ɍ
Large glyph ɍ
Sample ɍ · African Reference Alphabet / phonetics
Compared ɍ   r   Ɍ   ħ
With entities Hex: ɍ | Decimal: ɍ

Complete HTML Example

One page that shows ɍ with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ɍ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase R Stroke (ɍ) in HTML</title>
  <style>
    #point::after {
      content: "\024D";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x24D;</p>
  <p>Built with Decimal: &#589;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ɍ</p>
  <p>Sample: [&#x24D;]</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+024D → &#x24D; in HTML. The browser turns it into ɍ.

2. Decimal: same code point as 589 → &#589;. Same result as hex.

3. CSS: use \024D in content (not an HTML entity). #point::after appends ɍ.

4. Typed: paste ɍ in a UTF-8 document for orthographic or phonetic text. There is no named entity — numeric form is required when you need an entity.

Pitfalls & Tips

Common mistakes when working with lowercase r with stroke.

Named?

No named entity

HTML5 does not define a named entity for U+024D. Use &#x24D; or &#589;. Do not use &hstrok; — that is for ħ (U+0127).

Look-alikes

Not plain r or ħ

Plain r is U+0072. ħ (&hstrok;) is h with stroke. ɍ is r with stroke — different letters.

Fonts

Need Extended-B coverage

Some fonts omit Latin Extended-B. Prefer a font that includes U+024D for reliable glyphs.

CSS

Pad the CSS escape

Prefer \024D (four hex digits). A short \24D can swallow the next hex digit if one follows immediately.

CSS vs HTML

Do not mix escapes

\024D belongs in CSS strings. &#x24D; / &#589; belong in HTML.

Purpose

Not for body copy

Use plain r in normal English sentences. Reserve ɍ for African Reference Alphabet or phonetic contexts.

Semicolon

End references

Always finish entities with ; — write &#x24D;, not &#x24D.

Browser Support

Lowercase r with stroke (U+024D) and its entity forms (&#x24D;, &#589;, CSS \\024D) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Lowercase R Stroke (&#x024D;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+024D Full support

Bottom line: Prefer &#x24D; or &#589; in HTML when encoding must be explicit, and \\024D only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: lowercase r with stroke is U+024D (decimal 589) — glyph ɍ.
  • HTML: use &#x24D; or &#589; — no named entity.
  • CSS: use \024D inside content for generated text.
  • Watch out: ɍ ≠ plain r ≠ &hstrok; (ħ).

One line: U+024D → &#x24D; / &#589; / CSS \024D (no named entity).

Frequently Asked Questions

Use &#x24D; (hex), &#589; (decimal), type ɍ in UTF-8, or the CSS escape \024D in content. There is no HTML5 named entity for U+024D.
U+024D (LATIN SMALL LETTER R WITH STROKE). Hex 24D, decimal 589. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric references like &#589; or &#x24D; when you need an entity form. (H with stroke uses &hstrok; — that name is for U+0127, not r stroke.)
Use it for African Reference Alphabet text, phonetic transcription, and linguistic content that needs ɍ. Prefer plain r for ordinary English words.
HTML entities (&#589; or &#x24D;) go in markup. The CSS escape \024D goes in stylesheet strings (usually content on ::before/::after).
No. Plain r is U+0072. H with stroke ħ is U+0127 (&hstrok;). R with stroke ɍ is U+024D — a different letter.

Did you know?

Lowercase r with stroke is Unicode U+024D (decimal 589) — LATIN SMALL LETTER R WITH STROKE in Latin Extended-B. HTML5 has no named entity for it — use &#x24D; or &#589;. Capital is U+024C (Ɍ). Used in the African Reference Alphabet and phonetic transcription. Not the same as plain r or h stroke (&hstrok;).

Next: Lowercase R Tail

Learn the HTML entity for lowercase r with tail — next in this sequence.

Continue tutorial →

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