HTML Entity for Esh (ʃ)

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
U+0283IPA Extensions
ʃHexadecimal reference
ʃDecimal reference
—Use numeric codes only
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 lettersComplete 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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\283";
}
</style>
</head>
<body>
<p>Esh using Hexadecimal: ʃ</p>
<p>Esh using HTML Code: ʃ</p>
<p id="point">Esh using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Esh entity is universally supported in modern browsers:
👀 Live Preview
See the esh symbol (ʃ) in IPA context and compared with esh curl (ʆ):
🧠 How It Works
Hexadecimal Code
ʃ uses the Unicode hexadecimal value 0283 to display the Esh. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʃ uses the decimal Unicode value 643 to display the same character.
CSS Entity
\283 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Phonetic spelling of words with the sh sound (e.g. ship [ʃɪp]).
Academic papers, phonology, and sound inventories on the web.
Dictionaries, language apps, and pronunciation guides.
Teaching the sh sound and contrasting with other fricatives.
Linguistic HTML with correct IPA Extensions symbols.
IPA and phonetic entity reference pages.
💡 Best Practices
Do
- Use
ʃorʃ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
shtext - Expect a named entity—none exists for U+0283
- Put CSS escape
\283in HTML text nodes - Assume every font renders IPA Extensions clearly
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS render ʃ
ʃ ʃFor CSS stylesheets, use the escape in the content property
\283Unicode U+0283 — LATIN SMALL LETTER ESH
IPA voiceless palato-alveolar fricative (sh sound)
Three methods, no named HTML entity
❓ Frequently Asked Questions
ʃ (hex), ʃ (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.ʃ or ʃ in markup, or \283 in CSS.ʃ or ʃ) 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.
8 people found this page helpful
