Mathematical Bold Small Y

๐ฒ

Shortcodes

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

Unicode
U+1D432
HTML Code
𝐲
HEX Code
𝐲
CSS Code
\1D432
JS/JSON
\u1D432
Unix/C/PHP/JAVA
0x1D432
URL-encode
%F0%9D%90%B2

Customize Mathematical Bold Small Y

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

๐ฒ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ฒ</span>
HTML Code:
<span>&#119858;</span>
HEX Code:
<span>&#x1D432;</span>

Add with CSS

.mathematical-bold-small-y::before {
  content: '\\1D432';
}

Set it in JavaScript

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