HTML Entity for Uppercase U Grave (Ù)

What You'll Learn
How to display the uppercase U with grave accent (Ù) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00D9 in the Latin-1 Supplement block and is the capital form of the grave-accented u used in French (e.g. all-caps OÙ for “where”) and other Romance languages.
Render it with Ù, Ù, Ù, or CSS escape \00D9. The named entity Ù is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase U Grave Entity
U+00D9Latin-1 Supplement
ÙHexadecimal reference
ÙDecimal reference
ÙMost readable option
Name Value
──────────── ──────────
Unicode U+00D9
Hex code Ù
HTML code Ù
Named entity Ù
CSS code \00D9
Meaning Latin capital letter U with grave
Related U+00F9 = ù (ù, lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase U grave (Ù) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00D9";
}
</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 uppercase U grave (Ù) and the named entity Ù are universally supported in all modern browsers:
👀 Live Preview
See the uppercase U grave (Ù) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ù uses the Unicode hexadecimal value D9 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ù uses the decimal Unicode value 217 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
\00D9 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+00D9 sits in Latin-1 Supplement. Lowercase equivalent: U+00F9 (ù). Do not confuse with Ú (acute), Ȕ (double grave), or Ü (diaeresis).
Use Cases
The uppercase U grave (Ù) is commonly used in:
All-caps French text (OÙ, D’OÙ) for headlines, signage, and localized UI copy.
Multilingual websites, CMS content, and email templates requiring correct accented characters.
French and Italian courses, dictionaries, and grammar resources teaching grave-accented U.
Correct typographic representation of accented Latin text in publishing and design.
Input validation messages, labels, and placeholders in French-language applications.
Using Ù with lang="fr" helps assistive technologies interpret French text correctly.
When building HTML from localized data, using Ù or Ù guarantees 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
\00D9in CSScontentwhen generating the symbol via pseudo-elements - Set
lang="fr"on French content for accessibility and SEO
Don’t
- Confuse Ù with Ú (Ú), Ü (Ü), or Ȕ (double grave)
- Substitute plain
Uwhen the grave-accented character is required - Use the old incorrect CSS escape
\000D9—the correct value is\00D9 - Put CSS escape
\00D9in HTML text nodes - 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
\00D9Unicode U+00D9 — LATIN CAPITAL LETTER U WITH GRAVE
French all-caps (OÙ); lowercase is ù (ù)
Previous: Uppercase U Double Grave (Ȕ) Next: Uppercase U Horn
❓ Frequently Asked Questions
Ù (named), Ù (hex), Ù (decimal), or \00D9 in CSS content. All produce Ù. In UTF-8 you can also type Ù directly.U+00D9 (LATIN CAPITAL LETTER U WITH GRAVE). Latin-1 Supplement block. Hex D9, decimal 217. Used in French and Italian. Lowercase form is U+00F9 (ù).Ù. You can also use numeric codes Ù or Ù, or the CSS entity \00D9. Do not confuse with Ú (U+00DA) or Ü (U+00DC).Ù or Ù) or the named entity Ù is used in HTML content. The CSS entity \00D9 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
