Mathematical Script Capital Y

๐’ด

Shortcodes

Copy useful codes for mathematical script capital y symbol ๐’ด to use in websites, apps, blogs, and docs.

Unicode
U+1D4B4
HTML Code
𝒴
HEX Code
𝒴
CSS Code
\1D4B4
JS/JSON
\u1D4B4
Unix/C/PHP/JAVA
0x1D4B4
URL-encode
%F0%9D%92%B4

Customize Mathematical Script Capital Y

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

๐’ด
  

How to use Mathematical Script Capital Y Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐’ด</span>
HTML Code:
<span>&#119988;</span>
HEX Code:
<span>&#x1D4B4;</span>

Add with CSS

.mathematical-script-capital-y::before {
  content: '\\1D4B4';
}

Set it in JavaScript

document.querySelector('.mathematical-script-capital-y').textContent = '๐’ด';
copied