Mathematical Bold Script Small U

๐“พ

Shortcodes

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

Unicode
U+1D4FE
HTML Code
𝓾
HEX Code
𝓾
CSS Code
\1D4FE
JS/JSON
\u1D4FE
Unix/C/PHP/JAVA
0x1D4FE
URL-encode
%F0%9D%93%BE

Customize Mathematical Bold Script Small U

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

๐“พ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“พ</span>
HTML Code:
<span>&#120062;</span>
HEX Code:
<span>&#x1D4FE;</span>

Add with CSS

.mathematical-bold-script-small-u::before {
  content: '\\1D4FE';
}

Set it in JavaScript

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