HTML Entity for Uppercase S Reverse (Ƨ)

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
U+01A7Latin Extended-B
ƧHexadecimal reference
ƧDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01A7";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƨ</p>
<p>Symbol (decimal): Ƨ</p>
<p>Symbol (direct): Ƨ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase s reverse (Ƨ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase s reverse (Ƨ) in typographic and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ƨ uses the Unicode hexadecimal value 01A7 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƨ uses the decimal Unicode value 423 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type Ƨ directly in HTML when your document uses UTF-8 encoding. There is no named entity for tone two / reversed S.
CSS Entity
\01A7 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Used in tone-marking systems for languages such as Dan, where Ƨ represents tone two in standardized orthographies.
Appears in academic papers, language documentation, and dictionaries describing African tone languages.
When a font includes this reversed-S glyph for linguistic or decorative use. Use numeric references to output it in HTML or CSS.
When building HTML from linguistic databases, using Ƨ or Ƨ guarantees correct output.
Tutorials on HTML entities, Unicode, or Latin Extended-B showing numeric codes for Ƨ.
Using the correct character (U+01A7) ensures assistive technologies and search engines interpret encoded text accurately.
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 (
ƧorƧ) when escaping is required - Use
\01A7in CSScontentwhen 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
Sor a flipped character when Ƨ is required - Describe Ƨ as an IPA symbol—it is tone two in African orthographies, not standard IPA
- Use
U+001A7or CSS\001A7—the correct code isU+01A7and\01A7 - Put CSS escape
\01A7in HTML text nodes
Key Takeaways
Type Ƨ directly, or use hex/decimal references
Ƨ ƧFor CSS stylesheets, use the escape in the content property
\01A7Unicode U+01A7 — LATIN CAPITAL LETTER TONE TWO
Used in African tone orthographies; lowercase is ƨ (U+01A8)
Previous: Uppercase S Comma Below (Ș) Next: Uppercase T
❓ Frequently Asked Questions
Ƨ (hex), Ƨ (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 (ƨ).Ƨ or Ƨ, or the CSS entity \01A7. In UTF-8 pages you can type Ƨ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
