HTML Entity for Esh (ʃ)

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

What You'll Learn

How to display the Esh (ʃ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0283 (LATIN SMALL LETTER ESH) in the IPA Extensions block (U+0250–U+02AF)—the voiceless palato-alveolar fricative in the International Phonetic Alphabet (as in English “sh”).

Render it with ʃ, ʃ, or CSS escape \283. There is no named HTML entity. Do not confuse ʃ with ordinary sh letters, integral ∫, or esh curl (ʆ).

⚡ Quick Reference — Esh

Unicode U+0283

IPA Extensions

Hex Code ʃ

Hexadecimal reference

HTML Code ʃ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0283
Hex code       ʃ
HTML code      ʃ
Named entity   (none)
CSS code       \283
IPA meaning    Voiceless palato-alveolar fricative (sh)
Related        U+0286 = Esh curl (ʆ); ordinary sh = Latin letters
1

Complete HTML Example

This example demonstrates the Esh (ʃ) 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: "\283";
  }
 </style>
</head>
<body>
<p>Esh using Hexadecimal: &#x0283;</p>
<p>Esh using HTML Code: &#643;</p>
<p id="point">Esh using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Esh 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 symbol (ʃ) in IPA context and compared with esh curl (ʆ):

IPA ship [ʃɪp]
Large glyph ʃ
vs esh curl ʃ   vs   ʆ
Numeric refs &#x0283; &#643;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x0283; uses the Unicode hexadecimal value 0283 to display the Esh. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\283 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+0283 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 (ʃ) commonly appears in:

📝 IPA transcription

Phonetic spelling of words with the sh sound (e.g. ship [ʃɪp]).

🎓 Linguistics

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

🗣 Pronunciation

Dictionaries, language apps, and pronunciation guides.

📚 Language learning

Teaching the sh sound and contrasting with other fricatives.

📰 Research

Linguistic HTML with correct IPA Extensions symbols.

🌐 Symbol guides

IPA and phonetic entity reference pages.

💡 Best Practices

Do

  • Use &#x0283; or &#643; 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) with ʆ (esh curl) or ordinary sh text
  • Expect a named entity—none exists for U+0283
  • Put CSS escape \283 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 ʃ

&#x0283; &#643;
2

For CSS stylesheets, use the escape in the content property

\283
3

Unicode U+0283 — LATIN SMALL LETTER ESH

4

IPA voiceless palato-alveolar fricative (sh sound)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x0283; (hex), &#643; (decimal), or \283 in CSS content. There is no named entity.
U+0283 (LATIN SMALL LETTER ESH). IPA Extensions block (U+0250–U+02AF). Hex 0283, decimal 643. Voiceless palato-alveolar fricative in IPA.
When you need the IPA sh sound in linguistic content, transcription, pronunciation guides, dictionaries, or language learning materials.
Named entities cover a subset of common characters. U+0283 has no named entity—use &#x0283; or &#643; in markup, or \283 in CSS.
HTML references (&#643; or &#x0283;) go in markup. The CSS escape \283 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