HTML Entity for Lowercase E Reverse (ɘ)

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

What You'll Learn

How to display the Latin small letter reversed e (ɘ) in HTML using hexadecimal, decimal, and CSS escape methods. Also called lowercase e reverse, this character is used in the International Phonetic Alphabet (IPA) for the close-mid central rounded vowel. It is U+0258 in the IPA Extensions block.

Render it with ɘ, ɘ, or CSS escape \258. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase E Reverse Entity

Unicode U+0258

IPA Extensions

Hex Code ɘ

Hexadecimal reference

HTML Code ɘ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0258
Hex code       ɘ
HTML code      ɘ
Named entity   (none)
CSS code       \258
Meaning        Latin small letter reversed e
Also known as  Lowercase e reverse
Block          IPA Extensions (U+0250–U+02AF)
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: "\258";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x258;</p>
<p>Symbol (decimal): &#600;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The reversed e (ɘ) and its numeric entity references are supported in modern browsers:

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

👀 Live Preview

See the reversed e (ɘ) in IPA and linguistic contexts:

Large glyphɘ
IPA exampleClose-mid central rounded vowel: ɘ
Also known asReversed e / lowercase e reverse
Not the same ase (U+0065, plain letter)
Numeric refs&#x258; &#600; \258

🧠 How It Works

1

Hexadecimal Code

&#x258; uses the Unicode hexadecimal value 258 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#600; uses the decimal Unicode value 600 to display the same character. A common method for IPA Extension characters.

HTML markup
3

CSS Entity

\258 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+0258 sits in the IPA Extensions block (U+0250–U+02AF). Do not confuse ɘ (reversed e) with plain e (U+0065). There is no named HTML entity.

Use Cases

The reversed e (ɘ) is commonly used in:

🔤 IPA & Phonetics

International Phonetic Alphabet transcriptions for the close-mid central rounded vowel.

📚 Language Learning

Dictionaries, apps, and courses that show IPA pronunciation guides.

🌐 Linguistics

Scholarly articles, research sites, and phonetic annotation tools.

📄 Publishing

Academic and editorial content with IPA or phonetic symbols.

🎨 Typography

Reversed or decorative typography requiring the reversed e glyph.

🔍 Search & Accessibility

Correct encoding so IPA content is indexed and read consistently.

📝 Transcription

Phonetic transcription systems and annotation tools for speech notation.

💡 Best Practices

Do

  • Use &#600; or &#x258; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ɘ directly in UTF-8 source
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support IPA Extensions (U+0250–U+02AF)
  • Distinguish ɘ (reversed e) from plain e (U+0065)

Don’t

  • Assume a named entity exists—there is none for ɘ
  • Substitute plain e when ɘ is required for IPA accuracy
  • Put CSS escape \258 in HTML text nodes
  • Assume all fonts render IPA Extension glyphs identically
  • Confuse ɘ with schwa ə or other IPA vowel symbols

Key Takeaways

1

Three references render ɘ (no named entity)

&#x258; &#600;
2

For CSS stylesheets, use the escape in the content property

\258
3

Unicode U+0258 — LATIN SMALL LETTER REVERSED E

4

Essential for IPA, linguistics, and phonetic web content

❓ Frequently Asked Questions

Use &#x258; (hex), &#600; (decimal), or \258 in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+0258 (LATIN SMALL LETTER REVERSED E). IPA Extensions block. Hex 258, decimal 600. Used in the International Phonetic Alphabet for the close-mid central rounded vowel.
In IPA transcriptions, linguistic and phonetic content, language learning materials, and academic texts that require this character. It appears in specialized phonetic notation rather than everyday language.
HTML code (&#600; or &#x258;) is used in HTML content. The CSS entity (\258) 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 &#600; or &#x258; in HTML, or \258 in CSS. This is standard for many IPA Extension characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, 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