Mathematical Bold Script Small S

๐“ผ

Shortcodes

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

Unicode
U+1D4FC
HTML Code
𝓼
HEX Code
𝓼
CSS Code
\1D4FC
JS/JSON
\u1D4FC
Unix/C/PHP/JAVA
0x1D4FC
URL-encode
%F0%9D%93%BC

Customize Mathematical Bold Script Small S

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

๐“ผ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“ผ</span>
HTML Code:
<span>&#120060;</span>
HEX Code:
<span>&#x1D4FC;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-bold-script-small-s').textContent = '๐“ผ';
copied