Uppercase S Cedilla (Ş) is the Unicode character at U+015E (LATIN CAPITAL LETTER S WITH CEDILLA) in Latin Extended-A. It appears in Turkish, Azerbaijani, and Kurdish orthographies.
Remember
Character Ş
Unicode U+015E
Hex entity Ş
Decimal Ş
Named Ş
CSS escape \015E
Official name LATIN CAPITAL LETTER S WITH CEDILLA
Lowercase U+015F (ş)
All of these produce the same glyph: Ş. Compare with ordinary Uppercase S (U+0053) and Uppercase S Caron (U+0160).
Using Hex Code: Ş
Using HTML Code: Ş
Using Named Entity: Ş
Using CSS Entity: Ş
Şehir, Şeker
How It Works
1. Hex / decimal:U+015E → Ş or Ş in HTML.
2. Named:Ş is the readable HTML5 alias for the same code point.
3. CSS: use \015E in content (not an HTML entity). #point::after appends that glyph after the paragraph text.
4. Language sample:lang="tr" marks Turkish context; words like Şehir and Şeker use capital S with cedilla.
Pitfalls & Tips
Common mistakes when working with this character.
Named
Prefer Ş
The named entity is easier to read than numeric forms. Keep the trailing semicolon.
Look-alikes
Not caron or comma-below
U+015E is cedilla (Ş). Do not confuse with caron Š (U+0160) or Romanian comma-below Ș (U+0218).
Case
Use the correct case pair
Lowercase is ş (U+015F). Named entities are case-sensitive: Ş ≠ ş.
Combining
Prefer the precomposed form
Use U+015E rather than S + combining cedilla unless you have a specific normalization reason.
CSS vs HTML
Do not mix escapes
\015E belongs in CSS. Named/numeric entities belong in HTML.
Semicolon
End references
Always finish with ; — write Ş, not &Scedil.
Compatibility
Browser Support
Uppercase S Cedilla / LATIN CAPITAL LETTER S WITH CEDILLA (U+015E) and its entity forms (Ş, Ş, Ş, CSS \\015E) are supported in all mainstream browsers. Glyph shape depends on Latin Extended-A font coverage.
✓ Universal support
Uppercase S Cedilla
Encode with named, hex, decimal, or CSS escape — or paste the character in UTF-8 HTML.
100%Browser coverage
Google ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+015E / entitiesFull support
Bottom line: Prefer Ş for readable markup; use \\015E only inside CSS content. Do not confuse with Š (Š) or U+0218 (S with comma below).
Remember
Key Takeaways
Unicode: this character is U+015E (decimal 350) — LATIN CAPITAL LETTER S WITH CEDILLA.
HTML: prefer Ş, or use Ş / Ş.
CSS: use \015E inside content for generated text.
Watch out: lowercase is ş; U+015E ≠ U+0160 (S caron) or U+0218 (comma below).
One line:U+015E → Ş / Ş / CSS \015E.
Frequently Asked Questions
Use Ş (named), Ş (hex), Ş (decimal), or the CSS escape \015E in the content property. All render U+015E. You can also paste the character directly when your file is UTF-8.
U+015E (hex 015E, decimal 350). Unicode names it LATIN CAPITAL LETTER S WITH CEDILLA. It belongs to Latin Extended-A and is used in Turkish, Azerbaijani, and Kurdish.
Yes. HTML5 defines Ş for the uppercase form. The lowercase form uses ş (U+015F).
U+015E is capital S with a cedilla (Ş). U+0053 is ordinary capital S. U+0160 is capital S with caron (Š). U+0218 is capital S with comma below (Ș), preferred in modern Romanian — a different code point.
The case pair is U+015F (LATIN SMALL LETTER S WITH CEDILLA, ş). Use ş, ş, or ş.
HTML entities (Ş, Ş, or Ş) go in markup. The CSS escape \015E is used in stylesheets (usually in the content property of ::before/::after). Both render the same glyph.
🤔
Did you know?
This character is Unicode U+015E (decimal 350) — official name LATIN CAPITAL LETTER S WITH CEDILLA in Latin Extended-A. HTML5 defines the named entity Ş. Its lowercase pair is U+015F (ş). Common in Turkish, Azerbaijani, and Kurdish orthographies.