Mathematical Script Small Y

๐“Ž

Shortcodes

Copy useful codes for mathematical script small y symbol ๐“Ž to use in websites, apps, blogs, and docs.

Unicode
U+1D4CE
HTML Code
𝓎
HEX Code
𝓎
CSS Code
\1D4CE
JS/JSON
\u1D4CE
Unix/C/PHP/JAVA
0x1D4CE
URL-encode
%F0%9D%93%8E

Customize Mathematical Script Small Y

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

๐“Ž
  

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

Insert in HTML

1. Direct symbol:
<span>๐“Ž</span>
HTML Code:
<span>&#120014;</span>
HEX Code:
<span>&#x1D4CE;</span>

Add with CSS

.mathematical-script-small-y::before {
  content: '\\1D4CE';
}

Set it in JavaScript

document.querySelector('.mathematical-script-small-y').textContent = '๐“Ž';
copied