HTML Entity for Uppercase S Circumflex (Ŝ)

What You'll Learn
How to display the uppercase S with circumflex (Ŝ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+015C in the Latin Extended-A block. It is one of the six diacritic letters in Esperanto orthography (e.g. Ŝati — to enjoy, Ŝipo — ship, Ŝafo — sheep), where it represents a voiceless postalveolar fricative (similar to English “sh”).
Render it with Ŝ, Ŝ, Ŝ, or CSS escape \015C. The named entity Ŝ is the most readable option in HTML source.
⚡ Quick Reference — Uppercase S Circumflex Entity
U+015CLatin Extended-A
ŜHexadecimal reference
ŜDecimal reference
ŜMost readable option
Name Value
──────────── ──────────
Unicode U+015C
Hex code Ŝ
HTML code Ŝ
Named entity Ŝ
CSS code \015C
Meaning Latin capital letter S with circumflex
Related U+015D = ŝ (ŝ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase S circumflex (Ŝ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\015C";
}
</style>
</head>
<body>
<p>Symbol (hex): Ŝ</p>
<p>Symbol (decimal): Ŝ</p>
<p>Symbol (named): Ŝ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase S circumflex (Ŝ) and the named entity Ŝ are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase S circumflex (Ŝ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ŝ uses the Unicode hexadecimal value 015C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ŝ uses the decimal Unicode value 348 to display the same character. A common method when a numeric reference is needed.
Named Entity
Ŝ is the named entity for S circumflex—readable in source HTML and the preferred option for Esperanto content.
CSS Entity
\015C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ŝ. Unicode U+015C sits in Latin Extended-A. Lowercase equivalent: U+015D (ŝ, ŝ). Do not confuse with plain S (U+0053), Š (caron), or Ş (cedilla).
Use Cases
The uppercase S circumflex (Ŝ) is commonly used in:
Essential for correct Esperanto spelling at word starts (e.g. Ŝati, Ŝipo, Ŝafo). One of six standard diacritic letters in the Esperanto alphabet.
Teach correct spelling and pronunciation for Esperanto and related constructed or international language content.
Support proper rendering of Esperanto text on community sites, wikis, forums, and educational platforms.
Ensure correct character display in digital publications, dictionaries, and linguistic resources.
Used in phonetic notation, constructed-language studies, and academic papers referencing Esperanto orthography.
Using the correct character (U+015C) with proper lang attributes (e.g. lang="eo") ensures assistive technologies pronounce content correctly.
Using \015C 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
Ŝfor readable HTML when a named form is preferred - Set
lang="eo"on Esperanto content for correct pronunciation hints - Use
\015Cin CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ŝ (circumflex) from Š (caron), Ş (cedilla), and plain S (U+0053)
Key Takeaways
The named entity is the most readable form
ŜNumeric alternatives: hex and decimal
Ŝ ŜUnicode U+015C — LATIN CAPITAL LETTER S WITH CIRCUMFLEX
Essential for Esperanto; lowercase is ŝ (ŝ)
Previous: Uppercase S Cedilla (Ş) Next: Uppercase S Comma Below
❓ Frequently Asked Questions
Ŝ (named), Ŝ (hex), Ŝ (decimal), or \015C in CSS content. In UTF-8 you can also type Ŝ directly.U+015C (LATIN CAPITAL LETTER S WITH CIRCUMFLEX). Latin Extended-A block. Hex 015C, decimal 348. Essential in Esperanto orthography. Lowercase form is U+015D (ŝ).Ŝ. You can also use Ŝ or Ŝ, or the CSS entity \015C.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
