HTML Entity for Uppercase S Cedilla (Ş)

What You'll Learn
How to display the uppercase S with cedilla (Ş) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+015E in the Latin Extended-A block. It is essential in Turkish orthography (e.g. Şehir — city, Şeker — sugar, Şirket — company), as well as Azerbaijani and Kurdish, where it represents a voiceless postalveolar fricative (similar to English “sh”).
Render it with Ş, Ş, Ş, or CSS escape \015E. The named entity Ş is the most readable option in HTML source. Do not confuse Ş with Romanian Ș (S with comma below, U+0218)—a different character.
⚡ Quick Reference — Uppercase S Cedilla Entity
U+015ELatin Extended-A
ŞHexadecimal reference
ŞDecimal reference
ŞMost readable option
Name Value
──────────── ──────────
Unicode U+015E
Hex code Ş
HTML code Ş
Named entity Ş
CSS code \015E
Meaning Latin capital letter S with cedilla
Related U+015F = ş (ş)
Not the same U+0218 = Ș (Romanian S comma below)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase S cedilla (Ş) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\015E";
}
</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 cedilla (Ş) and the named entity Ş are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase S cedilla (Ş) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ş uses the Unicode hexadecimal value 015E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ş uses the decimal Unicode value 350 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
\015E 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+015E sits in Latin Extended-A. Lowercase equivalent: U+015F (ş, ş). Do not confuse with plain S (U+0053) or Romanian Ș (comma below).
Use Cases
The uppercase S cedilla (Ş) is commonly used in:
Essential for correct Turkish spelling at word starts and in proper nouns (e.g. Şehir, Şeker, Şirket). Use the entity or UTF-8 for proper display and SEO.
Used in Azerbaijani and Kurdish orthography for the voiceless postalveolar fricative in capital form.
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+015E) with proper lang attributes (e.g. lang="tr") ensures assistive technologies pronounce content correctly.
Using \015E 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
\015Ein CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ş (cedilla) from Š (caron) and Romanian Ș (comma below)
Don’t
- Substitute plain
Swhen Ş is required in Turkish text - Use Ş for Romanian—Romanian uses Ș (S with comma below, U+0218)
- Confuse Ş (cedilla) with Š (caron) or plain S (U+0053)
- Put CSS escape
\015Ein HTML text nodes - Use
\0015Ein CSS—the correct escape is\015E
Key Takeaways
The named entity is the most readable form
ŞNumeric alternatives: hex and decimal
Ş ŞUnicode U+015E — LATIN CAPITAL LETTER S WITH CEDILLA
Essential for Turkish; lowercase is ş (ş)
Previous: Uppercase S Caron (Š) Next: Uppercase S Circumflex
❓ Frequently Asked Questions
Ş (named), Ş (hex), Ş (decimal), or \015E in CSS content. In UTF-8 you can also type Ş directly.U+015E (LATIN CAPITAL LETTER S WITH CEDILLA). Latin Extended-A block. Hex 015E, decimal 350. Used in Turkish, Azerbaijani, and Kurdish. Lowercase form is U+015F (ş).Ş. You can also use Ş or Ş, or the CSS entity \015E.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
