HTML Entity for Uppercase Y Stroke (Ɏ)

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

What You'll Learn

How to display the uppercase y with stroke (Ɏ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+024E in the Latin Extended-B block—a Y with a horizontal stroke through the letter. It appears in Khmer ALA-LC romanization, linguistic notation, and specialized orthographies.

Render it with Ɏ, Ɏ, or CSS escape \024E. There is no named HTML entity for this character. In UTF-8 documents you can also type Ɏ directly. Do not confuse Ɏ (y stroke) with plain Y (U+0059), Ȳ (y macron), or Ý (y acute).

⚡ Quick Reference — Uppercase Y Stroke Entity

Unicode U+024E

Latin Extended-B

Hex Code Ɏ

Hexadecimal reference

HTML Code Ɏ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+024E
Hex code       Ɏ
HTML code      Ɏ
Named entity   (none)
CSS code       \024E
Meaning        Latin capital letter y with stroke
Related        U+024F = ɏ (lowercase)
               U+0059 = Y (plain letter)
               U+0232 = Ȳ (y macron)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase y stroke (Ɏ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

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

🌐 Browser Support

The uppercase y 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 uppercase y stroke (Ɏ) in linguistic and romanization contexts:

Large glyphɎ
Unicode nameLatin capital letter y with stroke
Lowercaseɏ (U+024F) — Latin small letter y with stroke
UsageKhmer ALA-LC romanization and specialized linguistic orthographies
Not the same asY (plain)  |  Ȳ (y macron)  |  Ý (y acute)
Numeric refs&#x024E; &#590; \024E

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#590; uses the decimal Unicode value 590 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

Direct Character

Type Ɏ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this stroked letter.

HTML markup
4

CSS Entity

\024E 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+024E sits in Latin Extended-B. Do not confuse with plain Y (U+0059), Ȳ (y macron), or Ý (y acute).

Use Cases

The uppercase y stroke (Ɏ) is commonly used in:

🇮🇪 Khmer romanization

ALA-LC romanization of Khmer script where Ɏ represents a distinct consonant sound.

🔤 Linguistics

Phonetic transcription, dictionaries, and academic papers using specialized Latin letters.

📚 Academic writing

Scholarly publications and language studies requiring correct stroked-letter notation.

📄 Publishing

Books, journals, and reference works on phonology and historical linguistics.

🌐 Internationalization

Specialized multilingual content requiring accurate rendering of stroked Latin letters.

🎨 Typography

Font specimens and character-set documentation for Latin Extended-B support.

⚙ Programmatic HTML

When building HTML from linguistic data, using &#590; or &#x024E; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ɏ directly in UTF-8 source
  • Use numeric references (&#x024E; or &#590;) when escaping is required
  • Use \024E in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Distinguish Ɏ (stroke) from plain Y, Ȳ (macron), and Ý (acute)

Don’t

  • Substitute plain Y or Y + combining stroke when Ɏ is required
  • Confuse Ɏ (stroke) with Ȳ (macron) or Ý (acute)
  • Use the old incorrect CSS escape \0024E—the correct value is \024E
  • Expect a named HTML entity—none exists for Ɏ
  • Put CSS escape \024E in HTML text nodes

Key Takeaways

1

Type Ɏ directly, or use hex/decimal references

&#x024E; &#590;
2

For CSS stylesheets, use the escape in the content property

\024E
3

Unicode U+024E — LATIN CAPITAL LETTER Y WITH STROKE

4

Stroked Y (Ɏ); not macron Ȳ or plain Y; lowercase is ɏ (U+024F)

❓ Frequently Asked Questions

Use &#x024E; (hex), &#590; (decimal), or \024E in CSS content. There is no named HTML entity for Ɏ. In UTF-8 you can also type Ɏ directly.
U+024E (LATIN CAPITAL LETTER Y WITH STROKE). Latin Extended-B block. Hex 024E, decimal 590. Used in Khmer romanization and linguistic notation. Lowercase form is U+024F (ɏ).
For Khmer ALA-LC romanization, linguistic and academic writing, specialized orthographies, and any content requiring an uppercase y with a horizontal stroke.
No. Use numeric codes &#590; or &#x024E;, or the CSS entity \024E. In UTF-8 pages you can type Ɏ directly.
Ɏ (U+024E) is Y with a horizontal stroke through the letter (Ɏ). Ȳ (U+0232) is Y with a macron above (Ȳ). They are different characters with different Unicode values and typographic roles.

Explore More HTML Entities!

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