HTML Entity for Lowercase E Turned (ǝ)

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

What You'll Learn

How to display the Latin small letter turned e (ǝ) in HTML using hexadecimal, decimal, and CSS escape methods. The turned e is the letter e rotated 180° and is used in the International Phonetic Alphabet (IPA) for a close-mid central unrounded vowel. It appears in phonetic transcription, linguistic notation, and some language orthographies. It is U+01DD in the Latin Extended-B block.

Render it with ǝ, ǝ, or CSS escape \1DD. There is no named HTML entity for the turned e, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase E Turned Entity

Unicode U+01DD

Latin Extended-B

Hex Code ǝ

Hexadecimal reference

HTML Code ǝ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01DD
Hex code       ǝ
HTML code      ǝ
Named entity   (none)
CSS code       \1DD
Meaning        Latin small letter turned e
Also known as  Turned e / lowercase e turned
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the turned e (ǝ) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The turned e (ǝ) and its numeric entity references are supported in modern browsers:

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

👀 Live Preview

See the turned e (ǝ) in IPA and linguistic contexts:

Large glyphǝ
IPA exampleClose-mid central unrounded vowel: ǝ
Also known asTurned e / lowercase e turned
Not the same asə (schwa) or e (U+0065)
Numeric refs&#x1DD; &#477; \1DD

🧠 How It Works

1

Hexadecimal Code

&#x1DD; uses the Unicode hexadecimal value 1DD to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\1DD 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+01DD sits in the Latin Extended-B block (U+0180–U+024F). Do not confuse ǝ (turned e) with ə (schwa) or plain e (U+0065). There is no named HTML entity.

Use Cases

The turned e (ǝ) is commonly used in:

🔤 IPA & Phonetics

International Phonetic Alphabet transcriptions for the close-mid central unrounded 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

Typographic and design projects requiring the turned e glyph.

🔍 Search & Accessibility

Correct encoding so IPA content is indexed and read consistently.

📝 Orthographies

Language-specific writing systems that use the turned e letter.

💡 Best Practices

Do

  • Use &#477; or &#x1DD; 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 Latin Extended-B (U+0180–U+024F)
  • Distinguish ǝ (turned e) from ə (schwa) and plain e (U+0065)

Don’t

  • Assume a named entity exists—there is none for ǝ
  • Substitute ə (schwa) or plain e when ǝ is required
  • Put CSS escape \1DD in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Confuse ǝ with other IPA vowel symbols such as ɘ (reversed e)

Key Takeaways

1

Three references render ǝ (no named entity)

&#x1DD; &#477;
2

For CSS stylesheets, use the escape in the content property

\1DD
3

Unicode U+01DD — LATIN SMALL LETTER TURNED E

4

Essential for IPA, linguistics, and phonetic web content

❓ Frequently Asked Questions

Use &#x1DD; (hex), &#477; (decimal), or \1DD in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+01DD (LATIN SMALL LETTER TURNED E). Latin Extended-B block. Hex 1DD, decimal 477. Used in the International Phonetic Alphabet for a close-mid central unrounded vowel and in some orthographies.
In phonetic transcription, IPA notation, linguistic descriptions, pronunciation guides, language-specific orthographies, and typographic or design projects that require this character.
HTML code (&#477; or &#x1DD;) is used in HTML content. The CSS entity (\1DD) 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 &#477; or &#x1DD; in HTML, or \1DD in CSS. This is standard for many Latin Extended-B 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