Mathematical Double-struck Small S

๐•ค

Shortcodes

Copy useful codes for mathematical double-struck small s symbol ๐•ค to use in websites, apps, blogs, and docs.

Unicode
U+1D564
HTML Code
𝕤
HEX Code
𝕤
CSS Code
\1D564
JS/JSON
\u1D564
Unix/C/PHP/JAVA
0x1D564
URL-encode
%F0%9D%95%A4

Customize Mathematical Double-struck Small S

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

๐•ค
  

How to use Mathematical Double-struck Small S Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐•ค</span>
HTML Code:
<span>&#120164;</span>
HEX Code:
<span>&#x1D564;</span>

Add with CSS

.mathematical-double-struck-small-s::before {
  content: '\\1D564';
}

Set it in JavaScript

document.querySelector('.mathematical-double-struck-small-s').textContent = '๐•ค';
copied