Latin Small Letter U With Hook Above

Shortcodes

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

Unicode
U+1EE7
HTML Code
ủ
HEX Code
ủ
CSS Code
\1EE7
JS/JSON
\u1EE7
Unix/C/PHP/JAVA
0x1EE7
URL-encode
%E1%BB%A7

Customize Latin Small Letter U With Hook Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>ủ</span>
HTML Code:
<span>&#7911;</span>
HEX Code:
<span>&#x1EE7;</span>

Add with CSS

.latin-small-letter-u-with-hook-above::before {
  content: '\\1EE7';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-u-with-hook-above').textContent = 'ủ';
copied