HTML Entity for Esh Curl (ʆ)

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

What You'll Learn

How to display the Esh Curl (ʆ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0286 (LATIN SMALL LETTER ESH WITH CURL) in the IPA Extensions block (U+0250–U+02AF)—a specialized IPA variant of esh used in linguistics and phonetic notation.

Render it with ʆ, ʆ, or CSS escape \286. There is no named HTML entity. Do not confuse ʆ with esh (ʃ), esh loop (ƪ), or ordinary sh letters.

⚡ Quick Reference — Esh Curl

Unicode U+0286

IPA Extensions

Hex Code ʆ

Hexadecimal reference

HTML Code ʆ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0286
Hex code       ʆ
HTML code      ʆ
Named entity   (none)
CSS code       \286
IPA meaning    Esh with curl (specialized variant)
Related        U+0283 = Esh (ʃ); U+01AA = Esh loop (ƪ)
1

Complete HTML Example

This example demonstrates the Esh Curl (ʆ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\286";
  }
 </style>
</head>
<body>
<p>Esh Curl using Hexadecimal: &#x0286;</p>
<p>Esh Curl using HTML Code: &#646;</p>
<p id="point">Esh Curl using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Esh Curl entity is universally supported in modern browsers:

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

👀 Live Preview

See the esh curl symbol (ʆ) in IPA context and compared with esh (ʃ):

IPA variant ʆ
Large glyph ʆ
vs esh ʆ   vs   ʃ
Numeric refs &#x0286; &#646;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x0286; uses the Unicode hexadecimal value 0286 to display the Esh Curl. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\286 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+0286 in the IPA Extensions block (U+0250–U+02AF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Esh Curl (ʆ) commonly appears in:

📝 IPA transcription

Specialized phonetic notation requiring the esh-with-curl glyph.

🎓 Linguistics

Academic papers, phonology, and sound inventories on the web.

🗣 Pronunciation

Dictionaries, language apps, and pronunciation guides.

📚 Language learning

Advanced IPA lessons contrasting esh, esh curl, and related symbols.

📰 Research

Linguistic HTML with correct IPA Extensions symbols.

🌐 Symbol guides

IPA and phonetic entity reference pages.

💡 Best Practices

Do

  • Use &#x0286; or &#646; for readable IPA markup
  • Use IPA-friendly fonts (e.g. Charis SIL, DejaVu Sans)
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add context for screen readers when the symbol carries phonetic meaning
  • Use brackets [ʆ] for phonetic vs slashes /ʆ/ for phonemic notation

Don’t

  • Confuse ʆ (esh curl) with ʃ (esh) or ƪ (esh loop)
  • Expect a named entity—none exists for U+0286
  • Put CSS escape \286 in HTML text nodes
  • Assume every font renders IPA Extensions clearly
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ʆ

&#x0286; &#646;
2

For CSS stylesheets, use the escape in the content property

\286
3

Unicode U+0286 — LATIN SMALL LETTER ESH WITH CURL

4

IPA esh variant with curl—distinct from ʃ esh

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x0286; (hex), &#646; (decimal), or \286 in CSS content. There is no named entity.
U+0286 (LATIN SMALL LETTER ESH WITH CURL). IPA Extensions block (U+0250–U+02AF). Hex 0286, decimal 646. Specialized IPA variant of esh.
When you need the esh-with-curl IPA character in linguistic content, transcription, pronunciation guides, or specialized phonetic notation.
Named entities cover a subset of common characters. U+0286 has no named entity—use &#x0286; or &#646; in markup, or \286 in CSS.
HTML references (&#646; or &#x0286;) go in markup. The CSS escape \286 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

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