HTML Entity for Lowercase S Hook (ʂ)

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

What You'll Learn

How to display the lowercase s with hook (ʂ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0282 in the IPA Extensions block. It is used in the International Phonetic Alphabet (IPA) for the voiceless retroflex fricative—a distinct sound found in languages such as Hindi, Polish (in some transcriptions), and Swedish (in certain dialect descriptions).

Render it with ʂ, ʂ, or CSS escape \0282. There is no named HTML entity for this character. In UTF-8 documents you can also type ʂ directly.

⚡ Quick Reference — Lowercase S Hook Entity

Unicode U+0282

IPA Extensions

Hex Code ʂ

Hexadecimal reference

HTML Code ʂ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0282
Hex code       ʂ
HTML code      ʂ
Named entity   (none)
CSS code       \0282
Meaning        Latin small letter s with hook
IPA use        Voiceless retroflex fricative
Related        U+0283 = ʃ (esh)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase s hook (ʂ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0282";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0282;</p>
<p>Symbol (decimal): &#642;</p>
<p>Symbol (direct): ʂ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase s hook (ʂ) is supported in all modern browsers as part of IPA Extensions:

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

👀 Live Preview

See the lowercase s hook (ʂ) in phonetic and typographic contexts:

Large glyphʂ
IPAVoiceless retroflex fricative (e.g. Hindi retroflex “sh” sound)
Unicode blockIPA Extensions (U+0250–U+02AF)
Not the same ass (plain)  |  ʃ (esh)  |  š (caron)
Numeric refs&#x0282; &#642; \0282

🧠 How It Works

1

Hexadecimal Code

&#x0282; uses the Unicode hexadecimal value 0282 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#642; uses the decimal Unicode value 642 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type ʂ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this IPA letter.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: ʂ. Unicode U+0282 sits in IPA Extensions. Do not confuse with plain s (U+0073), ʃ (esh), or š (caron).

Use Cases

The lowercase s hook (ʂ) is commonly used in:

🎤 IPA Phonetic Transcription

Represents the voiceless retroflex fricative in International Phonetic Alphabet notation for dictionaries and linguistic resources.

📚 Language Documentation

Used in academic papers, language learning materials, and phonology descriptions for Indo-Aryan and other languages with retroflex fricatives.

📐 Typography

When a font or design includes this IPA character. Use numeric references to output it reliably in HTML or CSS.

⚙ Programmatic HTML

When building HTML from linguistic databases or phonetic data, using &#642; or &#x0282; guarantees correct output.

📄 Documentation

Tutorials on HTML entities, Unicode, or IPA Extensions showing numeric codes for ʂ.

♿ Accessibility

Using the correct character (U+0282) with appropriate lang attributes helps assistive technologies interpret phonetic content.

🎨 CSS Generated Content

Using \0282 in the CSS content property to insert ʂ via pseudo-elements.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ʂ directly in UTF-8 source
  • Use numeric references (&#x0282; or &#642;) when escaping is required
  • Use \0282 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support IPA Extensions characters
  • Distinguish ʂ from ʃ (esh) and plain s (U+0073) in phonetic text

Don’t

  • Expect a named HTML entity—none exists for ʂ
  • Substitute plain s or ʃ (esh) when ʂ is required in IPA notation
  • Use U+00282 or CSS \00282—the correct code is U+0282 and \0282
  • Put CSS escape \0282 in HTML text nodes
  • Confuse retroflex ʂ with postalveolar ʃ in phonetic transcriptions

Key Takeaways

1

Type ʂ directly, or use hex/decimal references

&#x0282; &#642;
2

For CSS stylesheets, use the escape in the content property

\0282
3

Unicode U+0282 — LATIN SMALL LETTER S WITH HOOK

4

IPA voiceless retroflex fricative; no named HTML entity

❓ Frequently Asked Questions

Use &#x0282; (hex), &#642; (decimal), or \0282 in CSS content. There is no named HTML entity for ʂ. In UTF-8 you can also type ʂ directly.
U+0282 (LATIN SMALL LETTER S WITH HOOK). IPA Extensions block. Hex 0282, decimal 642. Used for the voiceless retroflex fricative in IPA.
When displaying IPA phonetic transcription, linguistic dictionaries, language documentation, or academic content that requires the retroflex s symbol. In UTF-8 pages you can type ʂ directly.
No. There is no named HTML entity for the lowercase s hook (ʂ). Use numeric codes &#642; or &#x0282;, or the CSS entity \0282. In UTF-8 pages you can type ʂ directly.
U+0282 (ʂ) is s with hook for the voiceless retroflex fricative. U+0283 (ʃ, esh) is a different IPA letter for the voiceless postalveolar fricative (English “sh”). They represent different sounds and are not interchangeable.

Explore More HTML Entities!

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