HTML Entity for Lowercase S Caron (š)

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