Latin Capital Letter S

S

Shortcodes

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

Unicode
U+0053
Alt Code
83
HTML Code
S
HEX Code
S
CSS Code
\0053
JS/JSON
\u0053
Unix/C/PHP/JAVA
0x53
URL-encode
S

Customize Latin Capital Letter S

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

S
  

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

Insert in HTML

1. Direct symbol:
<span>S</span>
HTML Code:
<span>&#83;</span>
HEX Code:
<span>&#x0053;</span>

Add with CSS

.latin-capital-letter-s::before {
  content: '\\0053';
}

Set it in JavaScript

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