HTML Entity for Lowercase Ezh Reverse (ƹ)

What You'll Learn
How to display the lowercase ezh reversed (ƹ) in HTML using hexadecimal, decimal, and CSS escape methods. The reversed ezh is the mirror form of the standard ezh (ʒ) and is used in linguistic and phonetic transcription. It is U+01B9 in the Latin Extended-B block.
Render it with ƹ, ƹ, or CSS escape \1B9. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase Ezh Reverse Entity
U+01B9Latin Extended-B
ƹHexadecimal reference
ƹDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01B9
Hex code ƹ
HTML code ƹ
Named entity (none)
CSS code \1B9
Meaning Latin small letter ezh reversed
Also known as Lowercase ezh reverse
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase ezh reverse (ƹ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1B9";
}
</style>
</head>
<body>
<p>Symbol (hex): ƹ</p>
<p>Symbol (decimal): ƹ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase ezh reverse (ƹ) and its numeric entity references are supported in modern browsers:
👀 Live Preview
See the lowercase ezh reverse (ƹ) in linguistic contexts:
z🧠 How It Works
Hexadecimal Code
ƹ uses the Unicode hexadecimal value 1B9 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƹ uses the decimal Unicode value 441 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\1B9 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+01B9 sits in Latin Extended-B. Do not confuse ƹ (ezh reversed) with ʒ (standard ezh) or ǯ (ezh with caron). There is no named HTML entity.
Use Cases
The lowercase ezh reverse (ƹ) is commonly used in:
Linguistic and phonetic transcription requiring the reversed ezh glyph.
IPA-related notation and phonetic reference materials.
Scholarly articles, research sites, and academic linguistics papers.
Editorial and academic content with specialized phonetic symbols.
Dictionary entries and courses with phonetic notation.
Correct encoding so linguistic 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 reversed) from ʒ (standard ezh)
Don’t
- Assume a named entity exists—there is none for ƹ
- Substitute standard ezh ʒ or
zwhen ƹ is required - Put CSS escape
\1B9in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Confuse ƹ with ǯ (ezh caron) or other ezh variants
Key Takeaways
Three references render ƹ (no named entity)
ƹ ƹFor CSS stylesheets, use the escape in the content property
\1B9Unicode U+01B9 — LATIN SMALL LETTER EZH REVERSED
Essential for linguistic transcription and phonetic web content
Previous: Lowercase Ezh Caron (ǯ) Next: Lowercase Ezh Tail
❓ Frequently Asked Questions
ƹ (hex), ƹ (decimal), or \1B9 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01B9 (LATIN SMALL LETTER EZH REVERSED). Latin Extended-B block. Hex 1B9, decimal 441. Used in linguistic and phonetic transcription.ƹ or ƹ) is used in HTML content. The CSS entity (\1B9) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ƹ but in different contexts.ƹ or ƹ in HTML, or \1B9 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
