HTML Entity for Uppercase E Reverse (Ǝ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+018E

What Is Uppercase E Reverse?

Uppercase E reverse (Ǝ) is the Unicode character at U+018E in Latin Extended-B. Official name: LATIN CAPITAL LETTER REVERSED E — a horizontally flipped capital E used in linguistic notation and extended Latin typography.

Remember
Character     Ǝ
Unicode       U+018E
Hex entity    Ǝ
Decimal       Ǝ
CSS escape    \018E
Named entity  (none)
Related       ɘ (U+0258)
Not the same  E · Ɛ · ǝ

Prefer Ǝ or Ǝ in HTML markup. You can also type Ǝ in UTF-8. There is no named entity. For the small reversed e, see U+0258 (ɘ).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterƎHTML text (UTF-8)
Hex entityƎHTML markup (preferred)
Decimal entityƎHTML markup
CSS escape\018EStylesheet content
Named entity—Not defined in HTML5
Related small formɘ (ɘ, U+0258)Small reversed e

When to Use Which

SituationUse
Capital reversed E (Ǝ)Ǝ or Ǝ
Small reversed e (ɘ)ɘ (ɘ)
Capital open E (Ɛ)Ɛ (Ɛ)
Plain capital EE (U+0045)
Generated text via ::before / ::aftercontent: "\018E"

Live Preview

Reversed E rendered next to related letters.

Example Reversed E: Ǝ
Large glyph Ǝ
Compared Ǝ   ɘ   E   Ɛ
With entities Hex: Ǝ | Decimal: Ǝ

Complete HTML Example

One page that shows reversed E with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce Ǝ, plus a short label and the related small form.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase E Reverse (Ǝ) in HTML</title>
  <style>
    #point::after {
      content: "\018E";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x018E;</p>
  <p>Using HTML Code: &#398;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ǝ</p>
  <p>Example: Reversed E Ǝ</p>
  <p>Related: Ǝ / ɘ</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+018E → &#x018E; in HTML. The browser turns it into Ǝ.

2. Decimal: same code point as 398 → &#398;. Same result as hex.

3. CSS: use \018E in content (not an HTML entity). #point::after appends that Ǝ after the paragraph text.

4. Typed / related: paste Ǝ in UTF-8, and use ɘ (U+0258) for the small reversed e.

Pitfalls & Tips

Common mistakes when working with reversed E.

Named?

No named entity

HTML5 does not define a named entity for U+018E. Use &#x018E; or &#398;.

vs E

Not plain capital E

Keyboard E is U+0045. Use U+018E only when you need the reversed capital letter.

vs Ɛ

Not capital open E

Ɛ (U+0190) is open E. Ǝ is a mirror-image capital E — different shapes and code points.

vs CSS flip

Not a CSS transform

transform: scaleX(-1) only flips visuals. U+018E is a real character you can copy, search, and encode.

CSS vs HTML

Do not mix escapes

\018E belongs in CSS strings. &#x018E; / &#398; belong in HTML.

Fonts

Extended Latin coverage

Some UI fonts omit Latin Extended-B letters. Prefer a font that covers this block for display.

Browser Support

Reversed E (U+018E) and its entity forms (&#x018E;, &#398;, CSS \\018E) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Uppercase E Reverse (&#x018E;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes
U+018E / entities Full support

Bottom line: Prefer &#x018E; or &#398; in HTML. Use \\018E only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: reversed E is U+018E (decimal 398) — glyph Ǝ.
  • HTML: use &#x018E; or &#398; — no named entity; typing Ǝ also works.
  • CSS: use \018E inside content for generated text.
  • Watch out: Ǝ ≠ plain E ≠ Ɛ; related small form is ɘ.

One line: U+018E → &#x018E; / &#398; / CSS \018E.

Frequently Asked Questions

Use &#x018E; (hex), &#398; (decimal), type Ǝ directly in UTF-8, or the CSS escape \018E in content. There is no named HTML entity for U+018E.
U+018E (LATIN CAPITAL LETTER REVERSED E). Hex 018E, decimal 398. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#398; or &#x018E;.
No. Ǝ is a horizontally flipped capital E (U+018E). Plain E is U+0045. Ɛ (U+0190) is capital open E — a different letter shape.
Use it in linguistic notation, typography, or orthographies that need a reversed capital E as one precomposed letter — not as a substitute for plain E or open E.
HTML entities (&#398; or &#x018E;) go in markup. The CSS escape \018E goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Reversed E (Ǝ) is Unicode U+018E (decimal 398) — LATIN CAPITAL LETTER REVERSED E in Latin Extended-B. HTML5 has no named entity — use &#x018E; or &#398;. Related small form: U+0258 (ɘ). Do not confuse with capital open E U+0190 (Ɛ) or plain E.

Next: Uppercase E Script Capital

Learn the HTML entity for script capital E (U+2130).

Continue tutorial →

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