HTML Entity for Lowercase Y Stroke (ɏ)

What You'll Learn
How to display the lowercase y with stroke (ɏ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+024F 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 \024F. 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+0079), ȳ (y macron), or ŷ (y circumflex).
⚡ Quick Reference — Lowercase Y Stroke Entity
U+024FLatin Extended-B
ɏHexadecimal reference
ɏDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+024F
Hex code ɏ
HTML code ɏ
Named entity (none)
CSS code \024F
Meaning Latin small letter y with stroke
Related U+024E = Ɏ (uppercase)
U+0079 = y (plain letter)
U+0233 = ȳ (y macron)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase y stroke (ɏ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\024F";
}
</style>
</head>
<body>
<p>Symbol (hex): ɏ</p>
<p>Symbol (decimal): ɏ</p>
<p>Symbol (direct): ɏ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase y stroke (ɏ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the lowercase y stroke (ɏ) in linguistic and romanization contexts:
🧠 How It Works
Hexadecimal Code
ɏ uses the Unicode hexadecimal value 024F to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɏ uses the decimal Unicode value 591 to display the same character. A common method for Latin Extended-B characters.
Direct Character
Type ɏ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this stroked letter.
CSS Entity
\024F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: ɏ. Unicode U+024F sits in Latin Extended-B. Do not confuse with plain y (U+0079), ȳ (y macron), or ŷ (y circumflex).
Use Cases
The lowercase y stroke (ɏ) is commonly used in:
ALA-LC romanization of Khmer script where ɏ represents a distinct consonant sound.
Phonetic transcription, dictionaries, and academic papers using specialized Latin letters.
Scholarly publications and language studies requiring correct stroked-letter notation.
Books, journals, and reference works on Southeast Asian languages and romanization systems.
Multilingual websites and CMS content requiring accurate specialized character rendering.
Font specimens showcasing Latin Extended-B (U+0180–U+024F) character support.
When building HTML from linguistic data, using ɏ or ɏ guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ɏ directly in UTF-8 source
- Use numeric references (
ɏorɏ) when escaping is required - Use
\024Fin CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish ɏ (stroke) from plain
y, ȳ (macron), and ŷ (circumflex)
Don’t
- Confuse ɏ (y stroke, ɏ) with ȳ (y macron, ȳ)—they are different characters
- Substitute plain
ywhen ɏ is required for correct romanization - Use the old incorrect CSS escape
\0024F—the correct value is\024F - Expect a named HTML entity—none exists for ɏ
- Put CSS escape
\024Fin HTML text nodes
Key Takeaways
Type ɏ directly, or use hex/decimal references
ɏ ɏFor CSS stylesheets, use the escape in the content property
\024FUnicode U+024F — LATIN SMALL LETTER Y WITH STROKE
Stroked y (ɏ); not macron ȳ or plain y; uppercase is Ɏ (U+024E)
Previous: Lowercase Y Reverse (ʎ) Next: Lowercase Y Umlaut (ÿ)
❓ Frequently Asked Questions
ɏ (hex), ɏ (decimal), or \024F in CSS content. There is no named HTML entity for ɏ. In UTF-8 you can also type ɏ directly.U+024F (LATIN SMALL LETTER Y WITH STROKE). Latin Extended-B block. Hex 024F, decimal 591. Used in Khmer romanization and linguistic notation. Uppercase form is U+024E (Ɏ).ɏ or ɏ, or the CSS entity \024F. In UTF-8 pages you can type ɏ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
