HTML Entity for Lowercase S Circumflex (ŝ)

What You'll Learn
How to display the lowercase s with circumflex (ŝ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+015D 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 \015D. The named entity ŝ is the most readable option in HTML source.
⚡ Quick Reference — Lowercase S Circumflex Entity
U+015DLatin Extended-A
ŝHexadecimal reference
ŝDecimal reference
ŝMost readable option
Name Value
──────────── ──────────
Unicode U+015D
Hex code ŝ
HTML code ŝ
Named entity ŝ
CSS code \015D
Meaning Latin small letter s with circumflex
Related U+015C = Ŝ (Ŝ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase s circumflex (ŝ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\015D";
}
</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 lowercase s circumflex (ŝ) and the named entity ŝ are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the lowercase s circumflex (ŝ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ŝ uses the Unicode hexadecimal value 015D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ŝ uses the decimal Unicode value 349 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
\015D 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+015D sits in Latin Extended-A. Uppercase equivalent: U+015C (Ŝ, Ŝ). Do not confuse with plain s (U+0073), š (caron), or ş (cedilla).
Use Cases
The lowercase s circumflex (ŝ) is commonly used in:
Essential for correct Esperanto spelling (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 linguistic transcription and academic material where the circumflex marks a specific s pronunciation.
Using the correct character (U+015D) with proper lang attributes (e.g. lang="eo") ensures assistive technologies pronounce content correctly.
Using \015D 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
\015Din CSScontentwhen generating the symbol via pseudo-elements - Distinguish ŝ (circumflex) from š (caron), ş (cedilla), and plain s (U+0073)
Don’t
- Substitute plain
sorshdigraphs when ŝ is required in Esperanto text - Confuse ŝ (circumflex) with š (caron) or ş (cedilla)
- Use
U+0015Dor CSS\0015D—the correct code isU+015Dand\015D - Put CSS escape
\015Din HTML text nodes - Use š or ş as substitutes for ŝ in Esperanto orthography
Key Takeaways
The named entity is the most readable form
ŝNumeric alternatives: hex and decimal
ŝ ŝUnicode U+015D — LATIN SMALL LETTER S WITH CIRCUMFLEX
Essential for Esperanto; uppercase is Ŝ (Ŝ)
Previous: Lowercase S Cedilla (ş) Next: Lowercase S Comma Below
❓ Frequently Asked Questions
ŝ (named), ŝ (hex), ŝ (decimal), or \015D in CSS content. In UTF-8 you can also type ŝ directly.U+015D (LATIN SMALL LETTER S WITH CIRCUMFLEX). Latin Extended-A block. Hex 015D, decimal 349. Essential in Esperanto. Uppercase form is U+015C (Ŝ).ŝ. You can also use ŝ or ŝ, or the CSS entity \015D.ŝ, ŝ, or ŝ) is used in HTML content; CSS entity \015D is used in stylesheets in the content property of pseudo-elements. Both produce ŝ.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
