Latin Letter Small Capital U

Shortcodes

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

Unicode
U+1D1C
HTML Code
ᴜ
HEX Code
ᴜ
CSS Code
\1D1C
JS/JSON
\u1D1C
Unix/C/PHP/JAVA
0x1D1C
URL-encode
%E1%B4%9C

Customize Latin Letter Small Capital U

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴜ</span>
HTML Code:
<span>&#7452;</span>
HEX Code:
<span>&#x1D1C;</span>

Add with CSS

.latin-letter-small-capital-u::before {
  content: '\\1D1C';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-u').textContent = 'ᴜ';
copied