HTML Entity for Lowercase S Reverse (ƨ)

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

What You'll Learn

How to display the lowercase s reverse (ƨ) in HTML using hexadecimal, decimal, and CSS escape methods. Unicode names this character LATIN SMALL LETTER TONE TWO (U+01A8) in the Latin Extended-B block. Its glyph resembles a reversed lowercase s and is used in African tone orthographies (notably in languages such as Dan) to mark specific tone or register distinctions.

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

⚡ Quick Reference — Lowercase S Reverse Entity

Unicode U+01A8

Latin Extended-B

Hex Code ƨ

Hexadecimal reference

HTML Code ƨ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01A8
Hex code       ƨ
HTML code      ƨ
Named entity   (none)
CSS code       \01A8
Meaning        Latin small letter tone two
Also called    Reversed s (typographic)
Related        U+01A7 = Ƨ (uppercase tone two)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01A8";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01A8;</p>
<p>Symbol (decimal): &#424;</p>
<p>Symbol (direct): ƨ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase s reverse (ƨ) is supported in all modern browsers as part of Latin Extended-B:

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

👀 Live Preview

See the lowercase s reverse (ƨ) in typographic and linguistic contexts:

Large glyphƨ
Unicode nameLatin small letter tone two (reversed-s shape)
UppercaseƧ (U+01A7) — Latin capital letter tone two
Not the same ass (plain)  |  ʂ (hook)  |  ə (schwa)
Numeric refs&#x01A8; &#424; \01A8

🧠 How It Works

1

Hexadecimal Code

&#x01A8; uses the Unicode hexadecimal value 01A8 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#424; uses the decimal Unicode value 424 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 tone two / reversed s.

HTML markup
4

CSS Entity

\01A8 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+01A8 sits in Latin Extended-B. Uppercase equivalent: U+01A7 (Ƨ). Do not confuse with plain s (U+0073).

Use Cases

The lowercase s reverse (ƨ) is commonly used in:

🌎 African Tone Orthographies

Used in tone-marking systems for languages such as Dan, where ƨ represents tone two in standardized orthographies.

📚 Linguistic Documentation

Appears in academic papers, language documentation, and dictionaries describing African tone languages.

📐 Typography

When a font includes this reversed-s glyph for linguistic or decorative use. Use numeric references to output it in HTML or CSS.

⚙ Programmatic HTML

When building HTML from linguistic databases, using &#424; or &#x01A8; guarantees correct output.

📄 Documentation

Tutorials on HTML entities, Unicode, or Latin Extended-B showing numeric codes for ƨ.

♿ Accessibility

Using the correct character (U+01A8) ensures assistive technologies and search engines interpret encoded text accurately.

🎨 CSS Generated Content

Using \01A8 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 (&#x01A8; or &#424;) when escaping is required
  • Use \01A8 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters
  • Distinguish ƨ (tone two) from plain s (U+0073) in orthographic text

Don’t

  • Expect a named HTML entity—none exists for ƨ
  • Substitute plain s or a flipped character when ƨ is required
  • Use U+001A8 or CSS \001A8—the correct code is U+01A8 and \01A8
  • Put CSS escape \01A8 in HTML text nodes
  • Confuse ƨ (tone two) with unrelated IPA symbols like ə (schwa)

Key Takeaways

1

Type ƨ directly, or use hex/decimal references

&#x01A8; &#424;
2

For CSS stylesheets, use the escape in the content property

\01A8
3

Unicode U+01A8 — LATIN SMALL LETTER TONE TWO

4

Reversed-s glyph; uppercase is Ƨ (U+01A7); no named entity

❓ Frequently Asked Questions

Use &#x01A8; (hex), &#424; (decimal), or \01A8 in CSS content. There is no named HTML entity for ƨ. In UTF-8 you can also type ƨ directly.
U+01A8 (LATIN SMALL LETTER TONE TWO). Latin Extended-B block. Hex 01A8, decimal 424. Used in African tone orthographies. Uppercase form is U+01A7 (Ƨ).
When displaying African tone orthographies, linguistic documentation, typography samples, or academic content that requires the tone-two character. In UTF-8 pages you can type ƨ directly.
No. There is no named HTML entity for the lowercase s reverse (ƨ). Use numeric codes &#424; or &#x01A8;, or the CSS entity \01A8. In UTF-8 pages you can type ƨ directly.
U+01A8 (ƨ) is Latin small letter tone two—a distinct character with a reversed-s shape used in tone orthographies. U+0073 (s) is the standard Latin lowercase letter. They are not interchangeable in encoded text.

Explore More HTML Entities!

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