Latin Small Letter S

s

Shortcodes

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

Unicode
U+0073
Alt Code
115
HTML Code
s
HEX Code
s
CSS Code
\0073
JS/JSON
\u0073
Unix/C/PHP/JAVA
0x73
URL-encode
s

Customize Latin Small Letter S

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

s
  

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

Insert in HTML

1. Direct symbol:
<span>s</span>
HTML Code:
<span>&#115;</span>
HEX Code:
<span>&#x0073;</span>

Add with CSS

.latin-small-letter-s::before {
  content: '\\0073';
}

Set it in JavaScript

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