Mathematical Fraktur Small S

๐”ฐ

Shortcodes

Copy useful codes for mathematical fraktur small s symbol ๐”ฐ to use in websites, apps, blogs, and docs.

Unicode
U+1D530
HTML Code
𝔰
HEX Code
𝔰
CSS Code
\1D530
JS/JSON
\u1D530
Unix/C/PHP/JAVA
0x1D530
URL-encode
%F0%9D%94%B0

Customize Mathematical Fraktur Small S

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

๐”ฐ
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ฐ</span>
HTML Code:
<span>&#120112;</span>
HEX Code:
<span>&#x1D530;</span>

Add with CSS

.mathematical-fraktur-small-s::before {
  content: '\\1D530';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-s').textContent = '๐”ฐ';
copied