Mathematical Monospace Small S

๐šœ

Shortcodes

Copy useful codes for mathematical monospace small s symbol ๐šœ to use in websites, apps, blogs, and docs.

Unicode
U+1D69C
HTML Code
𝚜
HEX Code
𝚜
CSS Code
\1D69C
JS/JSON
\u1D69C
Unix/C/PHP/JAVA
0x1D69C
URL-encode
%F0%9D%9A%9C

Customize Mathematical Monospace Small S

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

๐šœ
  

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

Insert in HTML

1. Direct symbol:
<span>๐šœ</span>
HTML Code:
<span>&#120476;</span>
HEX Code:
<span>&#x1D69C;</span>

Add with CSS

.mathematical-monospace-small-s::before {
  content: '\\1D69C';
}

Set it in JavaScript

document.querySelector('.mathematical-monospace-small-s').textContent = '๐šœ';
copied