Mathematical Bold Small U

๐ฎ

Shortcodes

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

Unicode
U+1D42E
HTML Code
𝐮
HEX Code
𝐮
CSS Code
\1D42E
JS/JSON
\u1D42E
Unix/C/PHP/JAVA
0x1D42E
URL-encode
%F0%9D%90%AE

Customize Mathematical Bold Small U

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

๐ฎ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ฎ</span>
HTML Code:
<span>&#119854;</span>
HEX Code:
<span>&#x1D42E;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-bold-small-u').textContent = '๐ฎ';
copied