Latin Subscript Small Letter S

Shortcodes

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

Unicode
U+209B
HTML Code
ₛ
HEX Code
ₛ
CSS Code
\209B
JS/JSON
\u209B
Unix/C/PHP/JAVA
0x209B
URL-encode
%E2%82%9B

Customize Latin Subscript Small Letter S

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₛ</span>
HTML Code:
<span>&#8347;</span>
HEX Code:
<span>&#x209B;</span>

Add with CSS

.latin-subscript-small-letter-s::before {
  content: '\\209B';
}

Set it in JavaScript

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