HTML Entity for Uppercase E Reverse (Ǝ)

What You'll Learn
How to display the reversed E (Ǝ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+018E (LATIN CAPITAL LETTER REVERSED E), a horizontally flipped capital E used in typography and linguistic notation. It sits in the Latin Extended-B block.
Render it with Ǝ, Ǝ, or CSS escape \18E. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase E Reverse Entity
U+018ELatin Extended-B
ƎHexadecimal reference
ƎDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+018E
Hex code Ǝ
HTML code Ǝ
Named entity (none)
CSS code \18E
Meaning Latin capital letter reversed E
Related U+0258 = lowercase reversed e (ɘ); U+0190 = open E (Ɛ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the reversed E (Ǝ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\18E";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǝ</p>
<p>Symbol (decimal): Ǝ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The reversed E (Ǝ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the reversed E (Ǝ) in typographic and linguistic contexts:
EE (U+0045) Ɛ (open E)🧠 How It Works
Hexadecimal Code
Ǝ uses the Unicode hexadecimal value 018E to display the reversed E. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǝ uses the decimal Unicode value 398 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\18E 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+018E sits in Latin Extended-B. Lowercase counterpart: U+0258 (ɘ). There is no named HTML entity. Do not confuse with plain E (U+0045).
Use Cases
The reversed E (Ǝ) is commonly used in:
Typographic designs, mirrored lettering, and creative text that uses the reversed capital E form.
Phonetic and linguistic notation requiring the reversed E glyph.
Language documentation and academic papers on extended Latin characters.
Font testing tools and Unicode character showcases for Latin Extended-B.
Scholarly publications referencing reversed 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 Ǝ (reversed E) from plain
E(U+0045) and Ɛ (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
Eor a rotated character when Ǝ is required - Put CSS escape
\18Ein HTML text nodes - Use padded Unicode notation like U+0018E—the correct value is
U+018E - Use
\0018Ein CSS—the correct escape is\18E
Key Takeaways
Three references render Ǝ (no named entity)
Ǝ ƎFor CSS stylesheets, use the escape in the content property
\18EUnicode U+018E — LATIN CAPITAL LETTER REVERSED E
Used in typography, phonetics, and Latin Extended-B linguistic content
Previous: Uppercase E Open Style (Ɛ) Next: Uppercase E Script Capital
❓ Frequently Asked Questions
Ǝ (hex), Ǝ (decimal), or \18E in CSS content. There is no named HTML entity for this character.U+018E (LATIN CAPITAL LETTER REVERSED E). Latin Extended-B block. Hex 018E, decimal 398.Ǝ or Ǝ) is used in HTML content. The CSS entity (\18E) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǝ but in different contexts.Ǝ or Ǝ in HTML, or \18E 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
