Mathematical Double-struck Small Y

๐•ช

Shortcodes

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

Unicode
U+1D56A
HTML Code
𝕪
HEX Code
𝕪
CSS Code
\1D56A
JS/JSON
\u1D56A
Unix/C/PHP/JAVA
0x1D56A
URL-encode
%F0%9D%95%AA

Customize Mathematical Double-struck Small Y

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

๐•ช
  

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

Insert in HTML

1. Direct symbol:
<span>๐•ช</span>
HTML Code:
<span>&#120170;</span>
HEX Code:
<span>&#x1D56A;</span>

Add with CSS

.mathematical-double-struck-small-y::before {
  content: '\\1D56A';
}

Set it in JavaScript

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