Latin Small Letter U With Horn And Tilde

Shortcodes

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

Unicode
U+1EEF
HTML Code
ữ
HEX Code
ữ
CSS Code
\1EEF
JS/JSON
\u1EEF
Unix/C/PHP/JAVA
0x1EEF
URL-encode
%E1%BB%AF

Customize Latin Small Letter U With Horn And Tilde

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

  

How to use Latin Small Letter U With Horn And Tilde Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ữ</span>
HTML Code:
<span>&#7919;</span>
HEX Code:
<span>&#x1EEF;</span>

Add with CSS

.latin-small-letter-u-with-horn-and-tilde::before {
  content: '\\1EEF';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-u-with-horn-and-tilde').textContent = 'ữ';
copied