HTML Entity for Uppercase S Cedilla (Ş)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+015E

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

Unicode U+015E

Latin Extended-A

Hex Code Ş

Hexadecimal reference

HTML Code Ş

Decimal reference

Named Entity Ş

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\015E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x015E;</p>
<p>Symbol (decimal): &#350;</p>
<p>Symbol (named): &Scedil;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase S cedilla (Ş) and the named entity &Scedil; are supported in all modern browsers as part of Latin Extended-A:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase S cedilla (Ş) in language and content contexts:

Large glyphŞ
TurkishŞehir (city)  |  Şeker (sugar)  |  Şirket (company)
Named entity&Scedil; renders as Ş
Lowercaseş (U+015F) — use &scedil;
Not the same asS (plain)  |  Š (caron)  |  Ș (Romanian comma below)
Numeric refs&#x015E; &#350; &Scedil; \015E

🧠 How It Works

1

Hexadecimal Code

&#x015E; uses the Unicode hexadecimal value 015E to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#350; uses the decimal Unicode value 350 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Named Entity

&Scedil; is the named entity for S cedilla—readable in source HTML and the preferred option for Turkish and related language content.

HTML markup
4

CSS Entity

\015E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ş. Unicode U+015E sits in Latin Extended-A. Lowercase equivalent: U+015F (ş, &scedil;). Do not confuse with plain S (U+0053) or Romanian Ș (comma below).

Use Cases

The uppercase S cedilla (Ş) is commonly used in:

🇹🇷 Turkish

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.

🇹🇷 Azerbaijani & Kurdish

Used in Azerbaijani and Kurdish orthography for the voiceless postalveolar fricative in capital form.

📚 Language Learning

Teach correct spelling and pronunciation for Turkish and related languages that use this character.

🌐 Multilingual Sites

Support proper rendering of names, place names, and content in Turkish and Turkic-language regions.

📄 Typography & Publishing

Ensure correct character display in digital publications, dictionaries, and linguistic resources.

♿ Accessibility

Using the correct character (U+015E) with proper lang attributes (e.g. lang="tr") ensures assistive technologies pronounce content correctly.

🎨 CSS Generated Content

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 &Scedil; for readable HTML when a named form is preferred
  • Set lang="tr" on Turkish content for correct pronunciation hints
  • Use \015E in CSS content when generating the symbol via pseudo-elements
  • Distinguish Ş (cedilla) from Š (caron) and Romanian Ș (comma below)

Don’t

  • Substitute plain S when Ş 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 \015E in HTML text nodes
  • Use \0015E in CSS—the correct escape is \015E

Key Takeaways

1

The named entity is the most readable form

&Scedil;
2

Numeric alternatives: hex and decimal

&#x015E; &#350;
3

Unicode U+015E — LATIN CAPITAL LETTER S WITH CEDILLA

4

Essential for Turkish; lowercase is ş (&scedil;)

❓ Frequently Asked Questions

Use &Scedil; (named), &#x015E; (hex), &#350; (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 (ş).
When displaying Turkish, Azerbaijani, or Kurdish text that uses Ş at word starts or in proper nouns, in multilingual sites, language learning content, dictionaries, or when you need a reliable character reference. In UTF-8 pages you can type Ş directly.
The named HTML entity is &Scedil;. You can also use &#350; or &#x015E;, or the CSS entity \015E.
No. Ş (U+015E) is S with cedilla, used in Turkish. Romanian uses Ș (U+0218), S with comma below—a different character with a different diacritic mark. Do not substitute one for the other.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful