HTML Entity for Uppercase E Closed (ɞ)

What You'll Learn
How to display the closed reversed open E (ɞ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+025E in the IPA Extensions block—a specialized phonetic letter used in the International Phonetic Alphabet (IPA) and linguistic transcriptions.
Render it with ɞ, ɞ, or CSS escape \25E. There is no HTML5 named entity for U+025E; use numeric references or type ɞ directly in UTF-8 source.
⚡ Quick Reference — Uppercase E Closed Entity
U+025EIPA Extensions
ɞHexadecimal reference
ɞDecimal reference
\25EStylesheet escape
Name Value
──────────── ──────────
Unicode U+025E
Hex code ɞ
HTML code ɞ
Named entity — (none)
CSS code \25E
Meaning Latin small letter closed reversed open E
Related U+0253 = ɓ (open o); plain E = U+0045
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the E closed symbol (ɞ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\25E";
}
</style>
</head>
<body>
<p>Symbol (hex): ɞ</p>
<p>Symbol (decimal): ɞ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The E closed symbol (ɞ) renders correctly in modern browsers when using numeric entities or UTF-8, though font support for IPA Extensions varies:
👀 Live Preview
See the E closed symbol (ɞ) in phonetic and linguistic contexts:
E (U+0045)🧠 How It Works
Hexadecimal Code
ɞ uses the Unicode hexadecimal value 25E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɞ uses the decimal Unicode value 606 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\25E 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+025E sits in IPA Extensions. Do not confuse with plain E (U+0045) or open vowel symbols like ɓ (U+0253).
Use Cases
The E closed symbol (ɞ) is commonly used in:
IPA notation for the closed reversed open vowel in pronunciation guides and dictionaries.
Language research, phonology papers, and academic documentation referencing IPA symbols.
Charts, tutorials, and reference materials for the International Phonetic Alphabet.
Font demonstrations, character set showcases, and specialized typographic projects.
Language learning materials, linguistics courses, and Unicode encoding tutorials.
Documentation, character maps, and encoding guides for U+025E.
Correct encoding so assistive technologies and search systems handle the symbol properly.
💡 Best Practices
Do
- Use
ɞorɞwhen a named entity is unavailable - Serve pages as UTF-8; you can also type ɞ directly in UTF-8 source
- Use fonts that support IPA Extensions (e.g. Doulos SIL, Charis SIL)
- Provide context when using IPA symbols in educational or academic content
- Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Substitute plain
Ewhen ɞ is required in phonetic notation - Put CSS escape
\25Ein HTML text nodes - Use padded Unicode notation like U+0025E—the correct value is
U+025E - Use
\0025Ein CSS—the correct escape is\25E - Assume all fonts render IPA Extensions glyphs identically
Key Takeaways
Three references render ɞ; no HTML5 named entity
ɞ ɞFor CSS stylesheets, use the escape in the content property
\25EUnicode U+025E — LATIN SMALL LETTER CLOSED REVERSED OPEN E
IPA Extensions phonetic symbol for linguistic and academic content
Previous: Uppercase E Circumflex (Ê) Next: Uppercase E Diagonal Stroke (Ɇ)
❓ Frequently Asked Questions
ɞ (hex), ɞ (decimal), or \25E in CSS content. There is no HTML5 named entity for U+025E; numeric references or UTF-8 are required.U+025E (LATIN SMALL LETTER CLOSED REVERSED OPEN E). IPA Extensions block. Hex 25E, decimal 606. Used in IPA phonetic transcriptions and linguistic documentation.ɞ or ɞ) is used in HTML content. The CSS entity (\25E) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ɞ but in different contexts.ɞ, ɞ, or type ɞ directly in UTF-8.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
