Latin Capital Letter S With Cedilla

Ş

Shortcodes

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

Unicode
U+015E
HTML Code
Ş
HEX Code
Ş
CSS Code
\015E
JS/JSON
\u015E
Unix/C/PHP/JAVA
0x15E
URL-encode
%C5%9E

Customize Latin Capital Letter S With Cedilla

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

Ş
  

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

Insert in HTML

1. Direct symbol:
<span>Ş</span>
HTML Code:
<span>&#350;</span>
HEX Code:
<span>&#x015E;</span>

Add with CSS

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

Set it in JavaScript

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