Mathematical Monospace Small Y

๐šข

Shortcodes

Copy useful codes for mathematical monospace small y symbol ๐šข to use in websites, apps, blogs, and docs.

Unicode
U+1D6A2
HTML Code
𝚢
HEX Code
𝚢
CSS Code
\1D6A2
JS/JSON
\u1D6A2
Unix/C/PHP/JAVA
0x1D6A2
URL-encode
%F0%9D%9A%A2

Customize Mathematical Monospace Small Y

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

๐šข
  

How to use Mathematical Monospace Small Y Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐šข</span>
HTML Code:
<span>&#120482;</span>
HEX Code:
<span>&#x1D6A2;</span>

Add with CSS

.mathematical-monospace-small-y::before {
  content: '\\1D6A2';
}

Set it in JavaScript

document.querySelector('.mathematical-monospace-small-y').textContent = '๐šข';
copied