Latin Small Letter S With Circumflex

ŝ

Shortcodes

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

Unicode
U+015D
HTML Code
ŝ
HEX Code
ŝ
CSS Code
\015D
JS/JSON
\u015D
Unix/C/PHP/JAVA
0x15D
URL-encode
%C5%9D

Customize Latin Small Letter S With Circumflex

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

ŝ
  

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

Insert in HTML

1. Direct symbol:
<span>ŝ</span>
HTML Code:
<span>&#349;</span>
HEX Code:
<span>&#x015D;</span>

Add with CSS

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

Set it in JavaScript

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