HTML Entity for Lowercase S Cedilla (ş)

What You'll Learn
How to display the lowercase s with cedilla (ş) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+015F in the Latin Extended-A block. It is essential in Turkish orthography (e.g. şehir — city, şeker — sugar, iş — work), as well as Azerbaijani and Kurdish, where it represents a voiceless postalveolar fricative (similar to English “sh”).
Render it with ş, ş, ş, or CSS escape \015F. The named entity ş is the most readable option in HTML source.
⚡ Quick Reference — Lowercase S Cedilla Entity
U+015FLatin Extended-A
şHexadecimal reference
şDecimal reference
şMost readable option
Name Value
──────────── ──────────
Unicode U+015F
Hex code ş
HTML code ş
Named entity ş
CSS code \015F
Meaning Latin small letter s with cedilla
Related U+015E = Ş (Ş)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase s cedilla (ş) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\015F";
}
</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 cedilla (ş) and the named entity ş are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the lowercase s cedilla (ş) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ş uses the Unicode hexadecimal value 015F to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ş uses the decimal Unicode value 351 to display the same character. A common method when a numeric reference is needed.
Named Entity
ş is the named entity for s cedilla—readable in source HTML and the preferred option for Turkish and related language content.
CSS Entity
\015F 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+015F sits in Latin Extended-A. Uppercase equivalent: U+015E (Ş, Ş). Do not confuse with plain s (U+0073) or š (caron).
Use Cases
The lowercase s cedilla (ş) is commonly used in:
Essential for correct Turkish spelling (e.g. şehir, şeker, iş). Use the entity or UTF-8 for proper display and SEO on Turkish-language sites.
Used in Azerbaijani and Kurdish orthography for the voiceless postalveolar fricative (similar to English “sh”).
Teach correct spelling and pronunciation for Turkish and related languages that use this character.
Support proper rendering of names, place names, and content in Turkish and Turkic-language regions.
Ensure correct character display in digital publications, dictionaries, and linguistic resources.
Using the correct character (U+015F) with proper lang attributes (e.g. lang="tr") ensures assistive technologies pronounce content correctly.
Using \015F 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="tr"on Turkish content for correct pronunciation hints - Use
\015Fin CSScontentwhen generating the symbol via pseudo-elements - Distinguish ş (cedilla) from š (caron) and plain s (U+0073)
Don’t
- Substitute plain
swhen ş is required in Turkish text - Confuse ş (cedilla) with š (caron) or plain s (U+0073)
- Use
U+0015For CSS\0015F—the correct code isU+015Fand\015F - Put CSS escape
\015Fin HTML text nodes - Use š (caron) in Turkish text where ş (cedilla) is required
Key Takeaways
The named entity is the most readable form
şNumeric alternatives: hex and decimal
ş şUnicode U+015F — LATIN SMALL LETTER S WITH CEDILLA
Essential for Turkish; uppercase is Ş (Ş)
Previous: Lowercase S Caron (š) Next: Lowercase S Circumflex
❓ Frequently Asked Questions
ş (named), ş (hex), ş (decimal), or \015F in CSS content. In UTF-8 you can also type ş directly.U+015F (LATIN SMALL LETTER S WITH CEDILLA). Latin Extended-A block. Hex 015F, decimal 351. Used in Turkish, Azerbaijani, and Kurdish. Uppercase form is U+015E (Ş).ş. You can also use ş or ş, or the CSS entity \015F.ş, ş, or ş) is used in HTML content; CSS entity \015F 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
