HTML Entity for Lowercase Ezh Caron (ǯ)

What You'll Learn
How to display the lowercase ezh with caron (ǯ) in HTML using hexadecimal, decimal, and CSS escape methods. Used in the Uralic Phonetic Alphabet, Skolt Sami, Laz, and Livonian orthography, this letter combines the ezh (ʒ) base with a caron (háček) accent. It is U+01EF in the Latin Extended-B block.
Render it with ǯ, ǯ, or CSS escape \1EF. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase Ezh Caron Entity
U+01EFLatin Extended-B
ǯHexadecimal reference
ǯDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01EF
Hex code ǯ
HTML code ǯ
Named entity (none)
CSS code \1EF
Meaning Latin small letter ezh with caron
Also known as Lowercase ezh caron
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase ezh caron (ǯ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1EF";
}
</style>
</head>
<body>
<p>Symbol (hex): ǯ</p>
<p>Symbol (decimal): ǯ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase ezh caron (ǯ) and its numeric entity references are supported in modern browsers:
👀 Live Preview
See the lowercase ezh caron (ǯ) in linguistic contexts:
🧠 How It Works
Hexadecimal Code
ǯ uses the Unicode hexadecimal value 1EF to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǯ uses the decimal Unicode value 495 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\1EF 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+01EF sits in Latin Extended-B. Do not confuse ǯ (ezh with caron) with plain ezh ʒ (U+0292). There is no named HTML entity.
Use Cases
The lowercase ezh caron (ǯ) is commonly used in:
Uralic Phonetic Alphabet transcriptions and linguistic notation.
Skolt Sami language websites, dictionaries, and educational content.
Orthographies that use the ezh-with-caron letter in native spelling.
Scholarly articles, research sites, and phonetic annotation tools.
Academic papers and editorial content on Uralic and Caucasian languages.
Correct encoding so specialized language content is indexed consistently.
Dictionary entries and courses for minority and Uralic languages.
💡 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 caron) from plain ezh ʒ (U+0292)
Don’t
- Assume a named entity exists—there is none for ǯ
- Substitute plain ezh ʒ or
zwhen ǯ is required - Put CSS escape
\1EFin HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Confuse ǯ with other caron-accented letters
Key Takeaways
Three references render ǯ (no named entity)
ǯ ǯFor CSS stylesheets, use the escape in the content property
\1EFUnicode U+01EF — LATIN SMALL LETTER EZH WITH CARON
Essential for Uralic phonetics, Skolt Sami, Laz, and Livonian content
Previous: Lowercase Eth (ð) Next: Lowercase Ezh Reverse
❓ Frequently Asked Questions
ǯ (hex), ǯ (decimal), or \1EF in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01EF (LATIN SMALL LETTER EZH WITH CARON). Latin Extended-B block. Hex 1EF, decimal 495. Used in the Uralic Phonetic Alphabet, Skolt Sami, Laz, and Livonian orthography.ǯ or ǯ) is used in HTML content. The CSS entity (\1EF) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ǯ but in different contexts.ǯ or ǯ in HTML, or \1EF 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
