HTML Entity for Uppercase U Acute (Ú)

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

What Is Uppercase U Acute?

Uppercase U Acute (Ú) is the Latin-1 Supplement character at Unicode U+00DA (LATIN CAPITAL LETTER U WITH ACUTE). HTML5 names it Ú. Use it for Spanish, Portuguese, Catalan, Hungarian, Czech, Slovak, and other Latin-script text that needs Ú.

Remember
Character     Ú
Unicode       U+00DA
Named entity  Ú
Hex entity    Ú
Decimal       Ú
CSS escape    \00DA
Not the same  ú (ú) · U · Ù · Ű

Named, hex, decimal, CSS, and a typed character all produce the same glyph: Ú. Prefer Ú or Ú in HTML markup. For the lowercase form see ú; for U with grave see uppercase U grave.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityÚHTML markup (best default)
Hex entityÚHTML markup
Decimal entityÚHTML markup
CSS escape\00DAStylesheet content
Direct characterÚUTF-8 HTML text
Lowercase pairú (U+00FA)Small letter u with acute

When to Use Which

SituationUse
Capital U with acuteÚ or Ú
Numeric-only markupÚ or Ú
Generated text via ::before / ::aftercontent: "\00DA"
Lowercase u with acuteUse ú (U+00FA)
Plain capital UType U (U+0055)
U with graveUse Ù (U+00D9)
U with double acuteUse Ű (U+0170)

Live Preview

Ú in Spanish context, compared with lowercase and related look-alikes.

Spanish Case pair: Ú / ú
Large glyph Ú
Named entity Ú → Ú
vs look-alikes Ú  |  ú  |  U  |  Ù  |  Ű
With entities Named: Ú | Hex: Ú | Decimal: Ú

Complete HTML Example

One page that shows Uppercase U Acute 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 display Ú in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase U Acute (Ú)</title>
  <style>
    #point::after {
      content: "\00DA";
    }
  </style>
</head>
<body>
  <p>Built with Named: &Uacute;</p>
  <p>Built with Hex: &#xDA;</p>
  <p>Built with Decimal: &#218;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: Ú</p>
  <p lang="es">Case pair: &Uacute; / &uacute;</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &Uacute; is the HTML5 name for U+00DA → Ú (case-sensitive: capital U).

2. Hex / decimal: &#xDA; or &#218; insert the same code point.

3. Typed: in a UTF-8 document you can paste Ú directly — same glyph, no entity.

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

5. Case pair: lowercase is &uacute; (U+00FA, ú) — see lowercase U acute.

Pitfalls & Tips

Common mistakes when working with Uppercase U Acute.

Case

Named entity is case-sensitive

&Uacute; is Ú. &uacute; is ú. Do not mix them.

Plain U

Not the same as plain U

Plain U (U+0055) has no acute. Do not substitute it when Ú is required.

Ù

Not U with grave

U+00D9 (Ù, &Ugrave;) uses a grave, not an acute. See uppercase U grave.

Ű

Not U with double acute

U+0170 (Ű, &Udblac;) is common in Hungarian. See uppercase U double acute.

Combining

Prefer the precomposed letter

Use U+00DA instead of U + combining acute (U+0301) when the precomposed form is available.

CSS vs HTML

Do not mix escapes

\00DA belongs in CSS strings. &Uacute; / &#xDA; / &#218; belong in HTML.

Browser Support

Uppercase U Acute (U+00DA) and its entity forms (&Uacute;, &#xDA;, &#218;, CSS \\00DA) are supported in all mainstream browsers when the page is UTF-8 and the font covers Latin-1 Supplement.

✓ Universal support

Uppercase U Acute (&#x00DA;)

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

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+00DA / &Uacute; Full support

Bottom line: Prefer &Uacute; in HTML text. Use &#xDA; / &#218; as equivalents, and \\00DA only inside CSS content. Glyph display depends on font coverage.

Key Takeaways

  • Unicode: this letter is U+00DA (decimal 218) — glyph Ú.
  • HTML: prefer &Uacute; — also &#xDA; / &#218;.
  • CSS: use \00DA inside content for generated text.
  • Watch out: Ú ≠ plain U ≠ Ù ≠ Ű ≠ ú.

One line: U+00DA → &Uacute; / &#xDA; / &#218; / CSS \00DA.

Frequently Asked Questions

Use &Uacute; (named), &#xDA; (hex), &#218; (decimal), or the CSS escape \00DA in the content property. All render Ú. Prefer &Uacute; or &#xDA; for readable markup.
U+00DA (LATIN CAPITAL LETTER U WITH ACUTE). Hex DA, decimal 218, named entity &Uacute;. It belongs to Latin-1 Supplement (U+0080–U+00FF).
Yes. HTML5 defines &Uacute; for U+00DA. It is case-sensitive — write Uacute with a capital U. Lowercase &uacute; is a different character (ú).
U+00DA (&Uacute;) is capital U with an acute accent. U+0055 is plain U. U+00D9 (&Ugrave;) uses a grave accent. U+0170 (&Udblac;) uses a double acute.
Use it for Spanish, Portuguese, Catalan, Hungarian, Czech, Slovak, and other Latin-script text that needs capital U with acute.
HTML entities (&Uacute;, &#218;, or &#xDA;) go in markup. The CSS escape \00DA is used in stylesheets (usually in the content property of ::before/::after). Both render Ú.

Did you know?

Uppercase U Acute is Unicode U+00DA (decimal 218) — glyph Ú (LATIN CAPITAL LETTER U WITH ACUTE) in Latin-1 Supplement. HTML5 names it &Uacute; (case-sensitive — capital U). Prefer it for Spanish, Portuguese, Catalan, Hungarian, Czech, and Slovak. Do not confuse it with lowercase &uacute; (ú), plain U, grave &Ugrave; (Ù), or double acute &Udblac; (Ű).

Next: Uppercase U Breve

Learn the HTML entity for capital U with breve — next in this sequence.

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