HTML Entity for Lowercase Ezh Tail (ƺ)

What You'll Learn
How to display the lowercase ezh with tail (ƺ) in HTML using hexadecimal, decimal, and CSS escape methods. Used in linguistic and phonetic transcription and in Twi language orthography, this letter combines the ezh (ʒ) base with a tail hook. It is U+01BA in the Latin Extended-B block.
Render it with ƺ, ƺ, or CSS escape \1BA. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase Ezh Tail Entity
U+01BALatin Extended-B
ƺHexadecimal reference
ƺDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01BA
Hex code ƺ
HTML code ƺ
Named entity (none)
CSS code \1BA
Meaning Latin small letter ezh with tail
Also known as Lowercase ezh tail
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase ezh tail (ƺ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1BA";
}
</style>
</head>
<body>
<p>Symbol (hex): ƺ</p>
<p>Symbol (decimal): ƺ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase ezh tail (ƺ) and its numeric entity references are supported in modern browsers:
👀 Live Preview
See the lowercase ezh tail (ƺ) in linguistic contexts:
🧠 How It Works
Hexadecimal Code
ƺ uses the Unicode hexadecimal value 1BA to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƺ uses the decimal Unicode value 442 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\1BA 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+01BA sits in Latin Extended-B. Do not confuse ƺ (ezh with tail) with ʒ (standard ezh) or ƹ (ezh reversed). There is no named HTML entity.
Use Cases
The lowercase ezh tail (ƺ) is commonly used in:
Twi (Akan) orthography and language content requiring the ezh-with-tail letter.
Linguistic and phonetic transcription for labialized fricative notation.
IPA-related notation and phonetic reference materials.
Scholarly articles, research sites, and academic linguistics papers.
Dictionary entries and courses for Twi and related languages.
Correct encoding so specialized language content is indexed consistently.
Font documentation and typographic projects using extended Latin letters.
💡 Best Practices
Do
- Use
ƺorƺin HTML (no named entity exists) - Serve pages as UTF-8; you can also type ƺ directly in UTF-8 source
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish ƺ (ezh tail) from ʒ (standard ezh) and ƹ (ezh reversed)
Don’t
- Assume a named entity exists—there is none for ƺ
- Substitute standard ezh ʒ or
zwhen ƺ is required - Put CSS escape
\1BAin HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Confuse ƺ with other ezh variants (caron, reversed, plain)
Key Takeaways
Three references render ƺ (no named entity)
ƺ ƺFor CSS stylesheets, use the escape in the content property
\1BAUnicode U+01BA — LATIN SMALL LETTER EZH WITH TAIL
Essential for Twi orthography, linguistics, and phonetic web content
Previous: Lowercase Ezh Reverse (ƹ) Next: Lowercase F
❓ Frequently Asked Questions
ƺ (hex), ƺ (decimal), or \1BA in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01BA (LATIN SMALL LETTER EZH WITH TAIL). Latin Extended-B block. Hex 1BA, decimal 442. Used in linguistic transcription and Twi language orthography.ƺ or ƺ) is used in HTML content. The CSS entity (\1BA) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ƺ but in different contexts.ƺ or ƺ in HTML, or \1BA in CSS. This is standard for many Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
