Mathematical Double-struck Small U

๐•ฆ

Shortcodes

Copy useful codes for mathematical double-struck small u symbol ๐•ฆ to use in websites, apps, blogs, and docs.

Unicode
U+1D566
HTML Code
𝕦
HEX Code
𝕦
CSS Code
\1D566
JS/JSON
\u1D566
Unix/C/PHP/JAVA
0x1D566
URL-encode
%F0%9D%95%A6

Customize Mathematical Double-struck Small U

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

๐•ฆ
  

How to use Mathematical Double-struck Small U Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐•ฆ</span>
HTML Code:
<span>&#120166;</span>
HEX Code:
<span>&#x1D566;</span>

Add with CSS

.mathematical-double-struck-small-u::before {
  content: '\\1D566';
}

Set it in JavaScript

document.querySelector('.mathematical-double-struck-small-u').textContent = '๐•ฆ';
copied