HTML Entity for Uppercase E Open Style (Ɛ)

What You'll Learn
How to display the uppercase open E (Ɛ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0190 (LATIN CAPITAL LETTER OPEN E), the capital counterpart of the IPA open e (ɛ). It sits in the Latin Extended-B block.
Render it with Ɛ, Ɛ, or CSS escape \190. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase E Open Style Entity
U+0190Latin Extended-B
ƐHexadecimal reference
ƐDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0190
Hex code Ɛ
HTML code Ɛ
Named entity (none)
CSS code \190
Meaning Latin capital letter open E
Related U+025B = open e (ɛ); U+018E = reversed E (Ǝ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase open E (Ɛ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\190";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɛ</p>
<p>Symbol (decimal): Ɛ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase open E (Ɛ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the uppercase open E (Ɛ) in typographic and linguistic contexts:
E (U+0045) Ǝ (reversed E)🧠 How It Works
Hexadecimal Code
Ɛ uses the Unicode hexadecimal value 0190 to display the uppercase open E. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɛ uses the decimal Unicode value 400 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\190 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+0190 sits in Latin Extended-B. Lowercase counterpart in IPA: ɛ (U+025B). There is no named HTML entity.
Use Cases
The uppercase open E (Ɛ) is commonly used in:
Typographic designs, font demos, and creative text that needs the capital open E form.
Capital open E in phonetic notation alongside lowercase open e (ɛ).
Language documentation and academic papers on extended Latin characters.
Font testing tools and Unicode character showcases for Latin Extended-B.
Scholarly publications referencing capital open E in linguistic notation.
Content requiring extended Latin glyphs beyond basic ASCII or Latin-1.
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
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ɛ (open E) from plain
E(U+0045) and ɛ (lowercase open e) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for Ɛ
- Substitute plain
Ewhen Ɛ is required - Put CSS escape
\190in HTML text nodes - Use padded Unicode notation like U+00190—the correct value is
U+0190 - Use
\00190in CSS—the correct escape is\190
Key Takeaways
Three references render Ɛ (no named entity)
Ɛ ƐFor CSS stylesheets, use the escape in the content property
\190Unicode U+0190 — LATIN CAPITAL LETTER OPEN E
Capital counterpart of IPA open e (ɛ, U+025B) in Latin Extended-B
Previous: Uppercase E Open Reverse Hook (ɝ) Next: Uppercase E Reverse (Ǝ)
❓ Frequently Asked Questions
Ɛ (hex), Ɛ (decimal), or \190 in CSS content. There is no named HTML entity for this character.U+0190 (LATIN CAPITAL LETTER OPEN E). Latin Extended-B block. Hex 0190, decimal 400. Uppercase counterpart of U+025B (open e).Ɛ or Ɛ) is used in HTML content. The CSS entity (\190) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ɛ but in different contexts.Ɛ or Ɛ in HTML, or \190 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
