Latin Small Letter S With Cedilla

ş

Shortcodes

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

Unicode
U+015F
HTML Code
ş
HEX Code
ş
CSS Code
\015F
JS/JSON
\u015F
Unix/C/PHP/JAVA
0x15F
URL-encode
%C5%9F

Customize Latin Small Letter S With Cedilla

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

ş
  

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

Insert in HTML

1. Direct symbol:
<span>ş</span>
HTML Code:
<span>&#351;</span>
HEX Code:
<span>&#x015F;</span>

Add with CSS

.latin-small-letter-s-with-cedilla::before {
  content: '\\015F';
}

Set it in JavaScript

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