HTML Entity for Uppercase E Open (ɛ)

What You'll Learn
How to display the open e (ɛ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+025B (LATIN SMALL LETTER OPEN E), the IPA symbol for the open-mid front unrounded vowel. It sits in the IPA Extensions block.
Render it with ɛ, ɛ, or CSS escape \25B. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase E Open Entity
U+025BIPA Extensions
ɛHexadecimal reference
ɛDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+025B
Hex code ɛ
HTML code ɛ
Named entity (none)
CSS code \25B
Meaning Latin small letter open e (IPA open e)
IPA meaning Open-mid front unrounded vowel
Related U+0190 = Ɛ (capital open E); U+0259 = schwa (ə)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the open e (ɛ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\25B";
}
</style>
</head>
<body>
<p>Symbol (hex): ɛ</p>
<p>Symbol (decimal): ɛ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The open e (ɛ) renders correctly in modern browsers when UTF-8 is used and the font supports IPA Extensions:
👀 Live Preview
See the open e (ɛ) in phonetic and linguistic contexts:
🧠 How It Works
Hexadecimal Code
ɛ uses the Unicode hexadecimal value 025B to display the open e. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɛ uses the decimal Unicode value 603 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\25B 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+025B sits in IPA Extensions. There is no named HTML entity. Do not confuse with ə (schwa) or plain E (U+0045).
Use Cases
The open e (ɛ) is commonly used in:
IPA notation for the vowel in words like “bed” [bɛd] in many English dialects.
Language documentation, comparative linguistics, and phonology research.
Charts, tutorials, and reference pages explaining the International Phonetic Alphabet.
Dictionary entries and language-learning apps showing correct vowel quality.
Scholarly publications in phonetics, speech science, and language acquisition.
Specialized fonts and character-set demos showcasing IPA Extensions glyphs.
Correct rendering so phonetic and 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 IPA-capable fonts (e.g. Doulos SIL, Charis SIL) for reliable glyph display
- Distinguish ɛ (open e) from ə (schwa) and plain
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
eorEwhen ɛ is required in IPA - Put CSS escape
\25Bin HTML text nodes - Use padded Unicode notation like U+0025B—the correct value is
U+025B - Use
\0025Bin CSS—the correct escape is\25B
Key Takeaways
Three references render ɛ (no named entity)
ɛ ɛFor CSS stylesheets, use the escape in the content property
\25BUnicode U+025B — LATIN SMALL LETTER OPEN E (IPA open e)
Essential for phonetic transcriptions, IPA charts, and linguistic content
Previous: Uppercase E Ogonek (Ę) Next: Uppercase E Open Reverse (ɜ)
❓ Frequently Asked Questions
ɛ (hex), ɛ (decimal), or \25B in CSS content. There is no named HTML entity for this character.U+025B (LATIN SMALL LETTER OPEN E). IPA Extensions block. Hex 025B, decimal 603. Used in IPA phonetic transcriptions and linguistic notation.ɛ or ɛ) is used in HTML content. The CSS entity (\25B) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ɛ but in different contexts.ɛ or ɛ in HTML, or \25B in CSS. This is standard for IPA Extensions characters.Explore More HTML Entities!
Discover 1500+ HTML character references — IPA symbols, accented letters, and more.
8 people found this page helpful
