Mathematical Fraktur Small Y

๐”ถ

Shortcodes

Copy useful codes for mathematical fraktur small y symbol ๐”ถ to use in websites, apps, blogs, and docs.

Unicode
U+1D536
HTML Code
𝔶
HEX Code
𝔶
CSS Code
\1D536
JS/JSON
\u1D536
Unix/C/PHP/JAVA
0x1D536
URL-encode
%F0%9D%94%B6

Customize Mathematical Fraktur Small Y

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

๐”ถ
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ถ</span>
HTML Code:
<span>&#120118;</span>
HEX Code:
<span>&#x1D536;</span>

Add with CSS

.mathematical-fraktur-small-y::before {
  content: '\\1D536';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-y').textContent = '๐”ถ';
copied