HTML Entity for Uppercase U Grave (Ù)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+00D9

What Is Uppercase U Grave?

Uppercase U grave (Ù) is the Unicode character at U+00D9 in Latin-1 Supplement. Official name: LATIN CAPITAL LETTER U WITH GRAVE — a capital U with a grave accent, used in French, Italian, and related orthographies.

Remember
Character     Ù
Unicode       U+00D9
Named entity  Ù  (capital U)
Hex entity    Ù
Decimal       Ù
CSS escape    \00D9
Not the same  ù · Ȕ · Ú

Prefer Ù in HTML markup — the capital U in the name matters. Numeric forms and typing Ù in UTF-8 also work. For the lowercase letter, use ù (ù).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityÙHTML markup (preferred)
Direct characterÙHTML text (UTF-8)
Hex entityÙHTML markup
Decimal entityÙHTML markup
CSS escape\00D9Stylesheet content
Lowercase (related)ù (U+00F9)Named ù

When to Use Which

SituationUse
Capital U with grave (Ù)Ù or type Ù
Lowercase u with grave (ù)ù (ù)
Capital U with double grave (Ȕ)Ȕ
Capital U with acute (Ú)Ú (Ú)
Capital U with diaeresis (Ü)Ü (Ü)
Generated text via ::before / ::aftercontent: "\00D9"

Live Preview

Uppercase U grave rendered alone and next to related letters.

Large glyph Ù
Notation OÙ
Compared Ù  |  ù  |  Ú  |  Ȕ
Hint Compare: Grave Ù | Lower ù | Acute Ú | Double grave Ȕ
With entities Named: Ù | Hex: Ù | Decimal: Ù

Complete HTML Example

One page that shows the letter with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce Ù, plus a short French word.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase U Grave (Ù)</title>
  <style>
    #point::after {
      content: "\00D9";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &Ugrave;</p>
  <p>Using Hex Code: &#xD9;</p>
  <p>Using HTML Code: &#217;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ù</p>
  <p lang="fr">Fran&ccedil;ais: O&Ugrave;</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &Ugrave; (capital U) is the clearest HTML form for U+00D9. Lowercase &ugrave; is a different character (ù).

2. Hex: U+00D9 → &#xD9; in HTML. Same glyph as the named entity.

3. Decimal: same code point as 217 → &#217;. Same glyph as hex and named.

4. CSS: use \00D9 in content (not an HTML entity). #point::after appends that Ù after the paragraph text.

5. Typed / word: paste Ù in UTF-8, or write O&Ugrave; with lang="fr".

Pitfalls & Tips

Common mistakes when working with U+00D9.

Case

&Ugrave; ≠ &ugrave;

&Ugrave; → Ù (capital). &ugrave; → ù (lowercase). Entity names are case-sensitive.

vs Ú

Not an acute

Ú (&Uacute;) tilts the other way. Grave leans left; acute leans right.

vs Ȕ

Not double grave

Ȕ has two grave marks. Everyday French/Italian Ù uses a single grave.

vs Ü

Not a diaeresis

Ü (&Uuml;) is Ü with two dots. Do not swap grave and umlaut.

Encoding

Keep UTF-8 declared

Latin-1 letters display reliably with <meta charset="UTF-8">. Prefer named entities when encoding is uncertain.

CSS vs HTML

Do not mix escapes

\00D9 belongs in CSS strings. &Ugrave; / &#xD9; / &#217; belong in HTML.

A11y

Use real language context

When Ù appears in French or Italian words, keep surrounding text and lang accurate (for example lang="fr" or lang="it").

Browser Support

Uppercase U grave (U+00D9) and its entity forms (&Ugrave;, &#xD9;, &#217;, CSS \\00D9) are supported in all mainstream browsers. Latin-1 glyphs are standard in system fonts.

✓ Universal support

Uppercase U Grave (&#x00D9;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+00D9 / &Ugrave; Full support

Bottom line: Prefer &Ugrave; (capital U) in HTML. Use \\00D9 only inside CSS content. Do not confuse with &ugrave; (ù) or double grave Ȕ.

Key Takeaways

  • Unicode: uppercase U grave is U+00D9 (decimal 217) — glyph Ù.
  • HTML: prefer &Ugrave; (capital U) — also &#xD9; / &#217;.
  • CSS: use \00D9 inside content for generated text.
  • Meaning: Ù is capital single grave — not ù (&ugrave;), not Ú (acute), not Ȕ (double grave).

One line: U+00D9 → &Ugrave; / &#xD9; / &#217; / CSS \00D9.

Frequently Asked Questions

Use &Ugrave; (named), &#xD9; (hex), &#217; (decimal), type Ù directly in UTF-8, or the CSS escape \00D9 in content. Prefer &Ugrave; in normal HTML.
U+00D9 (LATIN CAPITAL LETTER U WITH GRAVE). Hex D9, decimal 217. It belongs to Latin-1 Supplement (U+0080–U+00FF).
Yes. Use &Ugrave; (capital U). Numeric forms &#217; and &#xD9; also work. Note: &ugrave; (lowercase) is a different letter (ù).
No. Ù is U+00D9 (&Ugrave;, capital single grave). ù is U+00F9 (&ugrave;). Ȕ is double grave (U+0214).
Use it for French, Italian, and other text that needs capital Ù — for example OÙ — not as a substitute for Ú, Ü, or double grave Ȕ.
HTML entities (&Ugrave;, &#217;, or &#xD9;) go in markup. The CSS escape \00D9 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase U grave is Unicode U+00D9 (decimal 217) — glyph Ù in Latin-1 Supplement (U+0080–U+00FF). HTML5 names it &Ugrave; (capital U). Official name: LATIN CAPITAL LETTER U WITH GRAVE. Lowercase is &ugrave; (ù, U+00F9). Common in French and Italian (for example OÙ). Do not confuse with double grave Ȕ (U+0214) or acute Ú (&Uacute;).

Next: Uppercase U Horn

Learn the HTML entity for uppercase U with horn (U+01AF).

Continue tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful