Mathematical Script Capital U

๐’ฐ

Shortcodes

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

Unicode
U+1D4B0
HTML Code
𝒰
HEX Code
𝒰
CSS Code
\1D4B0
JS/JSON
\u1D4B0
Unix/C/PHP/JAVA
0x1D4B0
URL-encode
%F0%9D%92%B0

Customize Mathematical Script Capital U

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

๐’ฐ
  

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

Insert in HTML

1. Direct symbol:
<span>๐’ฐ</span>
HTML Code:
<span>&#119984;</span>
HEX Code:
<span>&#x1D4B0;</span>

Add with CSS

.mathematical-script-capital-u::before {
  content: '\\1D4B0';
}

Set it in JavaScript

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