Latin Small Letter U

u

Shortcodes

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

Unicode
U+0075
Alt Code
117
HTML Code
u
HEX Code
u
CSS Code
\0075
JS/JSON
\u0075
Unix/C/PHP/JAVA
0x75
URL-encode
u

Customize Latin Small Letter U

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

u
  

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

Insert in HTML

1. Direct symbol:
<span>u</span>
HTML Code:
<span>&#117;</span>
HEX Code:
<span>&#x0075;</span>

Add with CSS

.latin-small-letter-u::before {
  content: '\\0075';
}

Set it in JavaScript

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