HTML Entity for Latin Small Letter Inverted Closed Open E (ʖ)

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

What You'll Learn

How to display ʖ (LATIN SMALL LETTER INVERTED CLOSED OPEN E) in HTML using hexadecimal, decimal, and CSS escape methods. Despite the URL slug question-mark-inverted, this character is not the Spanish inverted question mark — it is an IPA Extensions letter used in phonetics and linguistics.

It is U+0296 in the IPA Extensions block (U+0250–U+02AF). Use ʖ, ʖ, or CSS \0296. There is no named HTML entity. For the punctuation mark ¿ (¿), see Inverted Question Mark (U+00BF, ¿).

⚡ Quick Reference — Inverted Closed Open E

Unicode U+0296

IPA Extensions

Hex Code ʖ

Hexadecimal reference

HTML Code ʖ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0296
Hex code       ʖ
HTML code      ʖ
Named entity   (none)
CSS code       \0296
Meaning        Latin small letter inverted closed open e (ʖ)
Related        U+00BF = Inverted question mark (¿)
               U+025B = Latin small letter open e (ɛ)
               U+0241 = Latin capital glottal stop (Ɂ)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing ʖ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\0296";
  }
 </style>
</head>
<body>
<p>Hex: &#x0296;</p>
<p>Decimal: &#662;</p>
<p>CSS: <span id="point"></span></p>
</body>
</html>
Try it Yourself

🌐 Browser Support

ʖ renders when fonts include IPA Extensions (U+0250–U+02AF):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ʖ rendered live in different contexts:

Glyph ʖ
IPA context Phonetic symbol ʖ in transcription
Compare ʖ U+0296   ɛ open e   ¿ inverted ?
Not the same ʖ is not ¿ (¿) — use inverted-question-mark
Numeric refs &#x0296; &#662; \0296

🧠 How It Works

1

Hexadecimal Code

&#x0296; uses the Unicode hexadecimal value 0296 to display the inverted closed open e letter.

HTML markup
2

Decimal HTML Code

&#662; uses the decimal Unicode value 662 to display the same character.

HTML markup
3

CSS Entity

\0296 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: ʖ. Unicode U+0296 in IPA Extensions (U+0250–U+02AF). No named HTML entity exists.

Use Cases

The Latin small letter inverted closed open e (ʖ) commonly appears in:

🎙 IPA Notation

Phonetic transcriptions in the IPA Extensions set.

📚 Linguistics

Academic papers, textbooks, and phonology references.

🌍 Orthographies

Writing systems that use this extended Latin letter.

🎓 Language Learning

Pronunciation guides and phonetics exercises.

📋 Unicode References

Character tables and IPA Extensions documentation.

💻 Dev Tutorials

HTML entity encoding examples for phonetic symbols.

♿ Accessibility

Pair ʖ with a phonetic description for screen readers.

💡 Best Practices

Do

  • Use &#x0296; or &#662; for the ʖ glyph
  • Link readers to inverted-question-mark for ¿ (U+00BF)
  • Use IPA or linguistics fonts for professional notation
  • Pick one style (hex or decimal) per project
  • Test rendering across browsers and devices

Don’t

  • Assume this is the Spanish inverted question mark — that is U+00BF (¿)
  • Substitute ¿ or &iquest; when ʖ is intended
  • Assume a named entity exists—there is none
  • Use CSS escape \0296 inside HTML text nodes
  • Use HTML entities in JS (use \u0296 instead)

Key Takeaways

1

Two HTML numeric references render ʖ

&#x0296; &#662;
2

For CSS stylesheets, use the escape in the content property

\0296
3

Unicode U+0296 is LATIN SMALL LETTER INVERTED CLOSED OPEN E

4

For ¿ use U+00BF with &iquest;

❓ Frequently Asked Questions

Use &#x0296; (hex), &#662; (decimal), or \0296 in CSS content. There is no named HTML entity for this symbol.
U+0296 (LATIN SMALL LETTER INVERTED CLOSED OPEN E). IPA Extensions block. Hex 0296, decimal 662.
No. This page covers U+0296 (ʖ), an IPA Extensions letter. The Spanish inverted question mark is U+00BF (¿) with named entity &iquest; on the inverted-question-mark page.
No. Use numeric references &#x0296; or &#662;, or the CSS escape \0296.
In IPA transcriptions, linguistic papers, phonetics textbooks, and orthographies that use this IPA Extensions character.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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