Latin Letter Small Capital U

Shortcodes

Copy and paste codes for Latin Letter Small Capital U symbol ᴜ to use in your websites, apps, blogs, and more.

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

Customize Latin Letter Small Capital U Symbol

Customize ᴜ symbol as you like and download Latin Letter Small Capital U as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Latin Letter Small Capital U symbol in HTML, CSS, and JS?

Insert ᴜ Latin Letter Small Capital U using HTML

1. Copy-paste Latin Letter Small Capital U directly:
<span>ᴜ</span>
2. HTML Decimal Code:
<span>&#7452;</span>
3. Hexadecimal Code:
<span>&#x1D1C;</span>
Preview:

Add Latin Letter Small Capital U symbol with CSS

.latin-letter-small-capital-u::before {
    content: '\\1D1C';
}
Preview: Latin Letter Small Capital U

Latin Letter Small Capital U JavaScript Code

1. Direct Symbol:
document.querySelector('.latin-letter-small-capital-u').textContent = 'ᴜ';
2. Unicode Escape for ᴜ:
document.querySelector('.latin-letter-small-capital-u').textContent = '\u1D1C';
Preview: