Latin Small Letter S With Caron

š

Shortcodes

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

Unicode
U+0161
HTML Code
š
HTML Entity
š
HEX Code
š
CSS Code
\0161
JS/JSON
\u0161
Unix/C/PHP/JAVA
0x161
URL-encode
%C5%A1

Customize Latin Small Letter S With Caron

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

š
  

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

Insert in HTML

1. Direct symbol:
<span>š</span>
HTML Code:
<span>&#353;</span>
HTML Entity:
<span>&scaron;</span>
HEX Code:
<span>&#x0161;</span>

Add with CSS

.latin-small-letter-s-with-caron::before {
  content: '\\0161';
}

Set it in JavaScript

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