Latin Subscript Small Letter U

Shortcodes

Copy useful codes for latin subscript small letter u symbol ᵤ to use in websites, apps, blogs, and docs.

Unicode
U+1D64
HTML Code
ᵤ
HEX Code
ᵤ
CSS Code
\1D64
JS/JSON
\u1D64
Unix/C/PHP/JAVA
0x1D64
URL-encode
%E1%B5%A4

Customize Latin Subscript Small Letter U

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵤ</span>
HTML Code:
<span>&#7524;</span>
HEX Code:
<span>&#x1D64;</span>

Add with CSS

.latin-subscript-small-letter-u::before {
  content: '\\1D64';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-u').textContent = 'ᵤ';
copied