Mathematical Fraktur Small U

๐”ฒ

Shortcodes

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

Unicode
U+1D532
HTML Code
𝔲
HEX Code
𝔲
CSS Code
\1D532
JS/JSON
\u1D532
Unix/C/PHP/JAVA
0x1D532
URL-encode
%F0%9D%94%B2

Customize Mathematical Fraktur Small U

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

๐”ฒ
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ฒ</span>
HTML Code:
<span>&#120114;</span>
HEX Code:
<span>&#x1D532;</span>

Add with CSS

.mathematical-fraktur-small-u::before {
  content: '\\1D532';
}

Set it in JavaScript

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