Latin Capital Letter S With Acute

Ś

Shortcodes

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

Unicode
U+015A
HTML Code
Ś
HEX Code
Ś
CSS Code
\015A
JS/JSON
\u015A
Unix/C/PHP/JAVA
0x15A
URL-encode
%C5%9A

Customize Latin Capital Letter S With Acute

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

Ś
  

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

Insert in HTML

1. Direct symbol:
<span>Ś</span>
HTML Code:
<span>&#346;</span>
HEX Code:
<span>&#x015A;</span>

Add with CSS

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

Set it in JavaScript

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