Latin Small Letter U With Grave

ù

Shortcodes

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

Unicode
U+00F9
Alt Code
249
HTML Code
ù
HTML Entity
ù
HEX Code
ù
CSS Code
\00F9
JS/JSON
\u00F9
Unix/C/PHP/JAVA
0xF9
URL-encode
%C3%B9

Customize Latin Small Letter U With Grave

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

ù
  

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

Insert in HTML

1. Direct symbol:
<span>ù</span>
HTML Code:
<span>&#249;</span>
HTML Entity:
<span>&ugrave;</span>
HEX Code:
<span>&#x00F9;</span>

Add with CSS

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

Set it in JavaScript

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