Modifier Letter Small U

Shortcodes

Copy useful codes for modifier letter small u symbol ᵘ to use in websites, apps, blogs, and docs.

Unicode
U+1D58
HTML Code
ᵘ
HEX Code
ᵘ
CSS Code
\1D58
JS/JSON
\u1D58
Unix/C/PHP/JAVA
0x1D58
URL-encode
%E1%B5%98

Customize Modifier Letter Small U

Customize ᵘ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Modifier Letter Small U Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᵘ</span>
HTML Code:
<span>&#7512;</span>
HEX Code:
<span>&#x1D58;</span>

Add with CSS

.modifier-letter-small-u::before {
  content: '\\1D58';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-u').textContent = 'ᵘ';
copied