Mathematical Bold Small S

๐ฌ

Shortcodes

Copy useful codes for mathematical bold small s symbol ๐ฌ to use in websites, apps, blogs, and docs.

Unicode
U+1D42C
HTML Code
𝐬
HEX Code
𝐬
CSS Code
\1D42C
JS/JSON
\u1D42C
Unix/C/PHP/JAVA
0x1D42C
URL-encode
%F0%9D%90%AC

Customize Mathematical Bold Small S

Customize ๐ฌ, download it as SVG or PNG, or copy the generated HTML snippet.

๐ฌ
  

How to use Mathematical Bold Small S Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ฌ</span>
HTML Code:
<span>&#119852;</span>
HEX Code:
<span>&#x1D42C;</span>

Add with CSS

.mathematical-bold-small-s::before {
  content: '\\1D42C';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-small-s').textContent = '๐ฌ';
copied