HTML Entity for Uppercase S Reverse (Ƨ)

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

What You'll Learn

How to display the uppercase s reverse (Ƨ) in HTML using hexadecimal, decimal, and CSS escape methods. Unicode names this character LATIN CAPITAL LETTER TONE TWO (U+01A7) in the Latin Extended-B block. Its glyph resembles a reversed uppercase 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 \01A7. There is no named HTML entity for this character. In UTF-8 documents you can also type Ƨ directly. Do not confuse Ƨ with plain S (U+0053)—a different character.

⚡ Quick Reference — Uppercase S Reverse Entity

Unicode U+01A7

Latin Extended-B

Hex Code Ƨ

Hexadecimal reference

HTML Code Ƨ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01A7
Hex code       Ƨ
HTML code      Ƨ
Named entity   (none)
CSS code       \01A7
Meaning        Latin capital letter tone two
Related        U+01A8 = ƨ (lowercase)
               U+0053 = S (plain—not tone two)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase 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: "\01A7";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01A7;</p>
<p>Symbol (decimal): &#423;</p>
<p>Symbol (direct): Ƨ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase 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 uppercase s reverse (Ƨ) in typographic and linguistic contexts:

Large glyphƧ
Unicode nameLatin capital letter tone two (reversed-S shape)
Lowercaseƨ (U+01A8) — Latin small letter tone two
Not the same asS (plain)  |  Ș (comma below)  |  Š (caron)
Numeric refs&#x01A7; &#423; \01A7

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#423; uses the decimal Unicode value 423 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

\01A7 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+01A7 sits in Latin Extended-B. Lowercase equivalent: U+01A8 (ƨ). Do not confuse with plain S (U+0053).

Use Cases

The uppercase 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 &#423; or &#x01A7; guarantees correct output.

📄 Documentation

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

♿ Accessibility

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

🎨 CSS Generated Content

Using \01A7 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 (&#x01A7; or &#423;) when escaping is required
  • Use \01A7 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+0053) in orthographic text

Don’t

  • Expect a named HTML entity—none exists for Ƨ
  • Substitute plain S or a flipped character when Ƨ is required
  • Describe Ƨ as an IPA symbol—it is tone two in African orthographies, not standard IPA
  • Use U+001A7 or CSS \001A7—the correct code is U+01A7 and \01A7
  • Put CSS escape \01A7 in HTML text nodes

Key Takeaways

1

Type Ƨ directly, or use hex/decimal references

&#x01A7; &#423;
2

For CSS stylesheets, use the escape in the content property

\01A7
3

Unicode U+01A7 — LATIN CAPITAL LETTER TONE TWO

4

Used in African tone orthographies; lowercase is ƨ (U+01A8)

❓ Frequently Asked Questions

Use &#x01A7; (hex), &#423; (decimal), or \01A7 in CSS content. There is no named HTML entity for Ƨ. In UTF-8 you can also type Ƨ directly.
U+01A7 (LATIN CAPITAL LETTER TONE TWO). Latin Extended-B block. Hex 01A7, decimal 423. Used in African tone orthographies such as Dan. Lowercase form is U+01A8 (ƨ).
When displaying African language tone orthographies, linguistic documentation, typography references, or academic content that requires the tone-two / reversed-S character—not plain Latin S. In UTF-8 pages you can type Ƨ directly.
No. There is no named HTML entity for the uppercase s reverse (Ƨ). Use numeric codes &#423; or &#x01A7;, or the CSS entity \01A7. In UTF-8 pages you can type Ƨ directly.
Ƨ (U+01A7) is Latin capital letter tone two—a distinct character resembling a reversed S, used in tone orthographies. S (U+0053) is the standard Latin uppercase letter. They are not interchangeable.

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