HTML Entity for Lowercase U Grave (ù)

What You'll Learn
How to display the lowercase u with grave accent (ù) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00F9 in the Latin-1 Supplement block and is essential for French and other languages that use the grave accent on u (e.g. où meaning “where”).
Render it with ù, ù, ù, or CSS escape \00F9. The named entity ù is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase U Grave Entity
U+00F9Latin-1 Supplement
ùHexadecimal reference
ùDecimal reference
ùMost readable option
Name Value
──────────── ──────────
Unicode U+00F9
Hex code ù
HTML code ù
Named entity ù
CSS code \00F9
Meaning Latin small letter u with grave
Related U+00D9 = Ù (Ù, uppercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase u grave (ù) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00F9";
}
</style>
</head>
<body>
<p>Symbol (hex): ù</p>
<p>Symbol (decimal): ù</p>
<p>Symbol (named): ù</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase u grave (ù) and the named entity ù are universally supported in all modern browsers:
👀 Live Preview
See the lowercase u grave (ù) in language and content contexts:
Ùu🧠 How It Works
Hexadecimal Code
ù uses the Unicode hexadecimal value F9 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ù uses the decimal Unicode value 249 to display the same character. A common method for Latin-1 characters.
Named Entity
ù is the standard named entity for ù—readable in source HTML and part of the HTML Latin-1 entity set.
CSS Entity
\00F9 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ù. Unicode U+00F9 sits in Latin-1 Supplement. Uppercase equivalent: U+00D9 (Ù). Do not confuse with ú (acute) or ȕ (double grave).
Use Cases
The lowercase u grave (ù) is commonly used in:
Essential in French orthography (où, d’où) for websites, articles, and localized UI copy.
Multilingual websites, CMS content, and email templates requiring correct accented characters.
French courses, dictionaries, and grammar resources teaching grave-accented u.
Correct typographic representation of accented Latin text in publishing and design.
Linguistics papers, citation styles, and reference materials using Latin-1 characters.
Using ù or ù with lang="fr" helps screen readers pronounce French correctly.
When escaping user input or generating HTML, ù ensures safe, correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ù directly in UTF-8 source
- Use
ùin HTML when possible for readability - Use numeric references (
ùorù) when escaping is required - Use
\00F9in CSScontentwhen generating the symbol via pseudo-elements - Distinguish ù (grave) from ú (acute, ú)
Don’t
- Confuse ù with ú (ú) or ȕ (double grave)
- Use the old incorrect CSS escape
\000F9—the correct value is\00F9 - Put CSS escape
\00F9in HTML text nodes - Substitute plain
uwhen the grave accent is required (e.g. French où) - Double-encode numeric references in dynamically generated HTML
Key Takeaways
Three HTML references plus a named entity all render ù
ù ù ùFor CSS stylesheets, use the escape in the content property
\00F9Unicode U+00F9 — LATIN SMALL LETTER U WITH GRAVE
French où; uppercase is Ù (Ù)
Previous: Lowercase U Double Grave (ȕ) Next: Lowercase U Horn
❓ Frequently Asked Questions
ù (named), ù (hex), ù (decimal), or \00F9 in CSS content. All produce ù. In UTF-8 you can also type ù directly.U+00F9 (LATIN SMALL LETTER U WITH GRAVE). Latin-1 Supplement block. Hex F9, decimal 249. Common in French (e.g. où). Uppercase form is U+00D9 (Ù).ù. You can also use numeric codes ù or ù, or the CSS entity \00F9. Do not confuse with ú (U+00FA, acute).ù or ù) or the named entity ù is used in HTML content. The CSS entity \00F9 is used in stylesheets in the content property of pseudo-elements. Both produce ù but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
