HTML Entity for Uppercase S Caron (Š)

What You'll Learn
How to display the uppercase S with caron (Š) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0160 in the Latin Extended-A block. The caron (hček) diacritic marks a distinct consonant in Czech and Slovak (e.g. Škola — school, Šumperk), as well as Croatian, Slovenian, and other Central European languages.
Render it with Š, Š, Š, or CSS escape \0160. The named entity Š is the most readable option in HTML source.
⚡ Quick Reference — Uppercase S Caron Entity
U+0160Latin Extended-A
ŠHexadecimal reference
ŠDecimal reference
ŠMost readable option
Name Value
──────────── ──────────
Unicode U+0160
Hex code Š
HTML code Š
Named entity Š
CSS code \0160
Meaning Latin capital letter S with caron
Related U+0161 = š (š)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase S caron (Š) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0160";
}
</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 caron (Š) and the named entity Š are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase S caron (Š) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Š uses the Unicode hexadecimal value 0160 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Š uses the decimal Unicode value 352 to display the same character. A common method when a numeric reference is needed.
Named Entity
Š is the named entity for S caron—readable in source HTML and the preferred option for Czech, Slovak, and related language content.
CSS Entity
\0160 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+0160 sits in Latin Extended-A. Lowercase equivalent: U+0161 (š, š). Do not confuse with plain S (U+0053) or Ś (acute).
Use Cases
The uppercase S caron (Š) is commonly used in:
Essential for correct Czech and Slovak spelling at word starts and in proper nouns (e.g. Škola, Šumperk). Use the entity or UTF-8 for proper display and SEO.
Used in Croatian and Slovenian orthography for the voiceless postalveolar fricative in capital form.
Teach correct spelling and pronunciation for Czech, Slovak, and related languages that use this character.
Support proper rendering of names, place names, and content in Central and Eastern European languages.
Ensure correct character display in digital publications, dictionaries, and linguistic resources.
Using the correct character (U+0160) with proper lang attributes (e.g. lang="cs") ensures assistive technologies pronounce content correctly.
Using \0160 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="cs"orlang="sk"on Czech/Slovak content for correct pronunciation hints - Use
\0160in CSScontentwhen generating the symbol via pseudo-elements - Distinguish Š (caron) from Ś (acute) and plain S (U+0053)
Don’t
- Substitute plain
Swhen Š is required in Czech or Slovak text - Confuse Š (caron) with Ś (acute, Polish) or plain S (U+0053)
- Use Š in Polish text where Ś (acute) is required instead
- Put CSS escape
\0160in HTML text nodes - Use
\00160in CSS—the correct escape is\0160
Key Takeaways
The named entity is the most readable form
ŠNumeric alternatives: hex and decimal
Š ŠUnicode U+0160 — LATIN CAPITAL LETTER S WITH CARON
Essential for Czech and Slovak; lowercase is š (š)
Previous: Uppercase S Acute (Ś) Next: Uppercase S Cedilla
❓ Frequently Asked Questions
Š (named), Š (hex), Š (decimal), or \0160 in CSS content. In UTF-8 you can also type Š directly.U+0160 (LATIN CAPITAL LETTER S WITH CARON). Latin Extended-A block. Hex 0160, decimal 352. Used in Czech, Slovak, Croatian, and Slovenian. Lowercase form is U+0161 (š).Š. You can also use Š or Š, or the CSS entity \0160.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
