Latin Capital Letter S With Caron

Š

Shortcodes

Copy useful codes for latin capital letter s with caron symbol Š to use in websites, apps, blogs, and docs.

Unicode
U+0160
HTML Code
Š
HTML Entity
Š
HEX Code
Š
CSS Code
\0160
JS/JSON
\u0160
Unix/C/PHP/JAVA
0x160
URL-encode
%C5%A0

Customize Latin Capital Letter S With Caron

Customize Š, download it as SVG or PNG, or copy the generated HTML snippet.

Š
  

How to use Latin Capital Letter S With Caron Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Š</span>
HTML Code:
<span>&#352;</span>
HTML Entity:
<span>&Scaron;</span>
HEX Code:
<span>&#x0160;</span>

Add with CSS

.latin-capital-letter-s-with-caron::before {
  content: '\\0160';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-s-with-caron').textContent = 'Š';
copied