HTML Entity for Uppercase E Reverse (Ǝ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+018E

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

Unicode U+018E

Latin Extended-B

Hex Code Ǝ

Hexadecimal reference

HTML Code Ǝ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the reversed E (Ǝ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\18E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x018E;</p>
<p>Symbol (decimal): &#398;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The reversed E (Ǝ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the reversed E (Ǝ) in typographic and linguistic contexts:

Large glyphƎ
OrientationHorizontally reversed capital E
Case pairƎ (uppercase) / ɘ (lowercase reversed e)
Not the same asplain E (U+0045)   Ɛ (open E)
Numeric refs&#x018E; &#398; \18E

🧠 How It Works

1

Hexadecimal Code

&#x018E; uses the Unicode hexadecimal value 018E to display the reversed E. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#398; uses the decimal Unicode value 398 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

\18E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

🎨 Typography

Typographic designs, mirrored lettering, and creative text that uses the reversed capital E form.

🔤 Phonetics

Phonetic and linguistic notation requiring the reversed E glyph.

📚 Linguistics

Language documentation and academic papers on extended Latin characters.

📄 Specialized fonts

Font testing tools and Unicode character showcases for Latin Extended-B.

📝 Academic papers

Scholarly publications referencing reversed E in linguistic notation.

🌐 Internationalization

Content requiring extended Latin glyphs beyond basic ASCII or Latin-1.

🔍 Search & SEO

Correct rendering so specialized linguistic content can be found and indexed.

💡 Best Practices

Do

  • Use &#398; or &#x018E; 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 E or a rotated character when Ǝ is required
  • Put CSS escape \18E in HTML text nodes
  • Use padded Unicode notation like U+0018E—the correct value is U+018E
  • Use \0018E in CSS—the correct escape is \18E

Key Takeaways

1

Three references render Ǝ (no named entity)

&#x018E; &#398;
2

For CSS stylesheets, use the escape in the content property

\18E
3

Unicode U+018E — LATIN CAPITAL LETTER REVERSED E

4

Used in typography, phonetics, and Latin Extended-B linguistic content

❓ Frequently Asked Questions

Use &#x018E; (hex), &#398; (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.
In typography, phonetic notation, linguistic content, specialized fonts, and any context requiring the reversed capital E glyph.
HTML code (&#398; or &#x018E;) 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.
No. There is no named HTML entity for Ǝ. Use &#398; or &#x018E; 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful