HTML Entity for Uppercase S Cedilla (Ş)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+015E

What Is the Uppercase S Cedilla Entity?

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).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterŞHTML text (UTF-8)
Named entityŞHTML markup — preferred for readability
Hex entityŞHTML markup
Decimal entityŞHTML markup
CSS escape\015EStylesheet content

When to Use Which

SituationUse
Readable multilingual HTMLŞ
Need numeric formŞ or Ş
Generated text via ::before / ::aftercontent: "\015E"
Lowercase s with cedillaş (U+015F)
S with caron (Š)Use Š (U+0160)

Live Preview

Capital S with cedilla in common language contexts.

Large glyph Ş
Case pair Ş / ş
Sample words Şehir, Şeker
Compared S Ş Š ş
With entities Ş → Ş | Hex: Ş

Complete HTML Example

One page that shows this character with hex, decimal, named entity, CSS, and a language sample. Use View Output or open the live editor.

Hex + Decimal + Named + CSS

All common ways to produce Ş in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase S Cedilla</title>
  <style>
    #point::after {
      content: "\015E";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x015E;</p>
  <p>Using HTML Code: &#350;</p>
  <p>Using Named Entity: &Scedil;</p>
  <p id="point">Using CSS Entity: </p>
  <p lang="tr">&Scedil;ehir, &Scedil;eker</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex / decimal: U+015E → &#x015E; or &#350; in HTML.

2. Named: &Scedil; 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 &Scedil;

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 &scedil; (U+015F). Named entities are case-sensitive: &Scedil; ≠ &scedil;.

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 &Scedil;, not &Scedil.

Browser Support

Uppercase S Cedilla / LATIN CAPITAL LETTER S WITH CEDILLA (U+015E) and its entity forms (&Scedil;, &#x015E;, &#350;, 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 Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+015E / entities Full support

Bottom line: Prefer &Scedil; for readable markup; use \\015E only inside CSS content. Do not confuse with &Scaron; (Š) or U+0218 (S with comma below).

Key Takeaways

  • Unicode: this character is U+015E (decimal 350) — LATIN CAPITAL LETTER S WITH CEDILLA.
  • HTML: prefer &Scedil;, or use &#x015E; / &#350;.
  • CSS: use \015E inside content for generated text.
  • Watch out: lowercase is &scedil;; U+015E ≠ U+0160 (S caron) or U+0218 (comma below).

One line: U+015E → &Scedil; / &#x015E; / CSS \015E.

Frequently Asked Questions

Use &Scedil; (named), &#x015E; (hex), &#350; (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 &Scedil; for the uppercase form. The lowercase form uses &scedil; (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 &scedil;, &#x015F;, or &#351;.
HTML entities (&Scedil;, &#350;, or &#x015E;) 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 &Scedil;. Its lowercase pair is U+015F (&scedil;). Common in Turkish, Azerbaijani, and Kurdish orthographies.

Next: Uppercase S Circumflex

Learn the HTML entity for Uppercase S Circumflex — next in this sequence.

Continue tutorial →

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