HTML Entity for Uppercase Ezh Caron (Ǯ)

What You'll Learn
How to display the uppercase 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+01EE in the Latin Extended-B block.
Render it with Ǯ, Ǯ, or CSS escape \1EE. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase Ezh Caron Entity
U+01EELatin Extended-B
ǮHexadecimal reference
ǮDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01EE
Hex code Ǯ
HTML code Ǯ
Named entity (none)
CSS code \1EE
Meaning Latin capital letter ezh with caron
Also known as Uppercase ezh caron
Related U+01EF = ǯ (lowercase); U+01B7 = Ʒ (ezh)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase ezh caron (Ǯ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1EE";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǯ</p>
<p>Symbol (decimal): Ǯ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase ezh caron (Ǯ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the uppercase ezh caron (Ǯ) in linguistic and orthographic contexts:
🧠 How It Works
Hexadecimal Code
Ǯ uses the Unicode hexadecimal value 01EE to display the uppercase ezh caron. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǯ uses the decimal Unicode value 494 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\1EE 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+01EE sits in Latin Extended-B. Lowercase counterpart: U+01EF (ǯ). There is no named HTML entity. Do not confuse with plain ezh Ʒ (U+01B7).
Use Cases
The uppercase ezh caron (Ǯ) is commonly used in:
Essential in Skolt Sami orthography for correct capital-letter spelling and localization.
Uralic Phonetic Alphabet and related linguistic notation requiring ezh with caron.
Language research, documentation, and academic papers on extended Latin characters.
Orthographies that use ezh caron variants in capitalized words and proper names.
Scholarly publications and linguistic databases requiring extended Latin glyphs.
When building HTML from language data, using Ǯ or Ǯ guarantees correct output.
Correct rendering so specialized linguistic content can be found and indexed.
💡 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
- Set appropriate
langattributes (e.g.lang="sms"for Skolt Sami) - Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ǯ (ezh caron) from Ʒ (ezh) and Ƹ (ezh reverse)
Don’t
- Assume a named entity exists—there is none for Ǯ
- Substitute plain ezh Ʒ or
Zwhen Ǯ is required in orthography - Put CSS escape
\1EEin HTML text nodes - Use padded Unicode notation like U+001EE—the correct value is
U+01EE - Use
\001EEin CSS—the correct escape is\1EE
Key Takeaways
Three references render Ǯ (no named entity)
Ǯ ǮFor CSS stylesheets, use the escape in the content property
\1EEUnicode U+01EE — LATIN CAPITAL LETTER EZH WITH CARON
Used in Skolt Sami, Uralic phonetics, Laz, Livonian, and linguistic content
Previous: Uppercase Ezh (Ʒ) Next: Uppercase Ezh Reverse (Ƹ)
❓ Frequently Asked Questions
Ǯ (hex), Ǯ (decimal), or \1EE in CSS content. There is no named HTML entity for this character.U+01EE (LATIN CAPITAL LETTER EZH WITH CARON). Latin Extended-B block. Hex 01EE, decimal 494. Used in Uralic phonetics and Skolt Sami orthography.Ǯ or Ǯ) is used in HTML content. The CSS entity (\1EE) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǯ but in different contexts.Ǯ or Ǯ in HTML, or \1EE in CSS. This is standard for Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, IPA symbols, and more.
8 people found this page helpful
