Latin Capital Letter U With Grave

Ù

Shortcodes

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

Unicode
U+00D9
Alt Code
217
HTML Code
Ù
HTML Entity
Ù
HEX Code
Ù
CSS Code
\00D9
JS/JSON
\u00D9
Unix/C/PHP/JAVA
0xD9
URL-encode
%C3%99

Customize Latin Capital Letter U With Grave

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

Ù
  

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

Insert in HTML

1. Direct symbol:
<span>Ù</span>
HTML Code:
<span>&#217;</span>
HTML Entity:
<span>&Ugrave;</span>
HEX Code:
<span>&#x00D9;</span>

Add with CSS

.latin-capital-letter-u-with-grave::before {
  content: '\\00D9';
}

Set it in JavaScript

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