HTML Entity for Lowercase Y Reverse (ʎ)

What You'll Learn
How to display the lowercase y reverse (ʎ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is officially named LATIN SMALL LETTER TURNED Y—a rotated y used in IPA for the palatal lateral approximant [ʎ] (as in Spanish calle [kaʎe] or Italian figlio [fiʎo] in many transcriptions). It is U+028E in the IPA Extensions block.
Render it with ʎ, ʎ, or CSS escape \028E. There is no named HTML entity for this character. Do not confuse ʎ (turned y) with plain y (U+0079), ý (y acute), or ŷ (y circumflex).
⚡ Quick Reference — Lowercase Y Reverse Entity
U+028EIPA Extensions
ʎHexadecimal reference
ʎDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+028E
Hex code ʎ
HTML code ʎ
Named entity (none)
CSS code \028E
Meaning Latin small letter turned y (reverse y)
Also called Turned y
IPA Palatal lateral approximant [ʎ]
Related plain y (U+0079) = Latin letter
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase y reverse (ʎ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\028E";
}
</style>
</head>
<body>
<p>Symbol (hex): ʎ</p>
<p>Symbol (decimal): ʎ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase y reverse (ʎ) is supported in modern browsers when the font includes IPA Extensions glyphs:
👀 Live Preview
See the lowercase y reverse (ʎ) in phonetic and content contexts:
y (U+0079) is the everyday Latin letter, not IPA turned yy (U+0079) | ý (y acute) | ʍ (w reverse)🧠 How It Works
Hexadecimal Code
ʎ uses the Unicode hexadecimal value 028E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʎ uses the decimal Unicode value 654 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\028E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ʎ. Unicode U+028E sits in IPA Extensions. Do not confuse with plain y (U+0079), ý (y acute), or ŷ (y circumflex). Use IPA-capable fonts for reliable rendering.
Use Cases
The lowercase y reverse (ʎ) is commonly used in:
Represents the palatal lateral approximant [ʎ]—as in Spanish calle [kaʎe] and Italian figlio [fiʎo] in many transcriptions.
Phonetic transcription, dictionaries, and academic papers using IPA consonant symbols.
Language learning apps, pronunciation guides, and phonetics courses teaching IPA consonants.
Transcribing Spanish ll, Italian gli, and related palatal lateral sounds in linguistic content.
Character charts and linguistic resources requiring precise IPA representation.
Font specimens and design references showcasing IPA Extensions characters.
When building HTML from phonetic 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
\028Ein CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support IPA Extensions (U+0250–U+02AF)
- Distinguish ʎ (turned y) from plain
yand accented y letters
Don’t
- Substitute plain
ywhen ʎ is required for IPA accuracy - Confuse ʎ (turned y consonant) with ý (y acute) or ŷ (y circumflex)
- Use the old incorrect CSS escape
\0028E—the correct value is\028E - Expect a named HTML entity—none exists for ʎ
- Put CSS escape
\028Ein HTML text nodes
Key Takeaways
Type ʎ directly, or use hex/decimal references
ʎ ʎFor CSS stylesheets, use the escape in the content property
\028EUnicode U+028E — LATIN SMALL LETTER TURNED Y
IPA palatal lateral approximant [ʎ]; not the plain Latin letter y
Previous: Lowercase Y Macron (ȳ) Next: Lowercase Y Stroke (ɏ)
❓ Frequently Asked Questions
ʎ (hex), ʎ (decimal), or \028E in CSS content. There is no named HTML entity. In UTF-8 you can also type ʎ directly.U+028E (LATIN SMALL LETTER TURNED Y). IPA Extensions block. Hex 028E, decimal 654. Also called turned y. Used in IPA for the palatal lateral approximant [ʎ].y (U+0079) is the standard Latin letter used in everyday text. They are different characters with different Unicode values.ʎ or ʎ in HTML, or \028E in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
