Latin Capital Letter U With Tilde

Ũ

Shortcodes

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

Unicode
U+0168
HTML Code
Ũ
HEX Code
Ũ
CSS Code
\0168
JS/JSON
\u0168
Unix/C/PHP/JAVA
0x168
URL-encode
%C5%A8

Customize Latin Capital Letter U With Tilde

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

Ũ
  

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

Insert in HTML

1. Direct symbol:
<span>Ũ</span>
HTML Code:
<span>&#360;</span>
HEX Code:
<span>&#x0168;</span>

Add with CSS

.latin-capital-letter-u-with-tilde::before {
  content: '\\0168';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-u-with-tilde').textContent = 'Ũ';
copied