HTML Entity for Uppercase U Acute (Ú)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+00DA

What You'll Learn

How to display the uppercase U with acute accent (Ú) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00DA in the Latin-1 Supplement block and is essential for Spanish, Portuguese, Hungarian, and other languages.

Render it with Ú, Ú, Ú, or CSS escape \00DA. The named entity Ú is often the most readable option in HTML source.

⚡ Quick Reference — Uppercase U Acute Entity

Unicode U+00DA

Latin-1 Supplement

Hex Code Ú

Hexadecimal reference

HTML Code Ú

Decimal reference

Named Entity Ú

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00DA
Hex code       Ú
HTML code      Ú
Named entity   Ú
CSS code       \00DA
Meaning        Latin capital letter U with acute
Related        U+00FA = ú (lowercase)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing the uppercase U acute (Ú) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00DA";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xDA;</p>
<p>Symbol (decimal): &#218;</p>
<p>Symbol (named): &Uacute;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase U acute (Ú) and the named entity &Uacute; are universally supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase U acute (Ú) in language and content contexts:

Large glyphÚ
SpanishÚnico, Último, Útil
PortugueseÚtil, Último
HungarianÚj (new)
Named entity&Uacute; renders as Ú
Not the same asplain U (U+0055)  |  Ù (U grave)  |  Ü (U umlaut)
Numeric refs&#xDA; &#218; &Uacute; \00DA

🧠 How It Works

1

Named Entity

&Uacute; is the standard named entity for Ú—readable in source HTML and part of the HTML Latin-1 entity set.

HTML markup
2

Hexadecimal Code

&#xDA; uses the Unicode hexadecimal value DA to display the character. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#218; uses the decimal Unicode value 218 to display the same character. A common method for Latin-1 characters.

HTML markup
4

CSS Entity

\00DA is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ú. Unicode U+00DA sits in Latin-1 Supplement. Lowercase equivalent: U+00FA (&uacute;). Do not confuse with plain U (U+0055), Ù (U grave), or Ü (U umlaut).

Use Cases

The uppercase U acute (Ú) is commonly used in:

🇬🇤 Spanish Content

Sentence-initial words like Único, Último, and Útil for correct Spanish spelling.

🇧🇵 Portuguese

Used in Útil and Último when capitalized at the start of a sentence or title.

🇭🇺 Hungarian

Essential in words like Új (new) and other Hungarian vocabulary with acute U.

🌐 Multilingual Websites

International and localized content that must display accented characters correctly.

📝 Proper names

Names of people, cities, and brands that start with or include Ú.

🔤 Language learning

Courses, dictionaries, and educational materials teaching accented letters.

🔍 Search & SEO

Correct spelling improves screen reader pronunciation and search indexing.

💡 Best Practices

Do

  • Use &Uacute; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ú directly in UTF-8 source
  • Set lang attributes (e.g. lang="es" or lang="hu") for correct pronunciation
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish Ú (U+00DA) from plain U (U+0055)—meaning can change in proper names

Don’t

  • Substitute plain U when Ú is required for correct spelling
  • Confuse Ú (u acute) with Ù (u grave, &Ugrave;) or Ü (u umlaut)
  • Put CSS escape \00DA in HTML text nodes
  • Use the old incorrect CSS escape \000DA—the correct value is \00DA
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ú; named entity is most readable

&#xDA; &#218; &Uacute;
2

For CSS stylesheets, use the escape in the content property

\00DA
3

Unicode U+00DA — LATIN CAPITAL LETTER U WITH ACUTE

4

Lowercase pair is U+00FA (ú, &uacute;)

❓ Frequently Asked Questions

Use &Uacute; (named), &#xDA; (hex), &#218; (decimal), or \00DA in CSS content. The named entity &Uacute; is the most readable for HTML content.
U+00DA (LATIN CAPITAL LETTER U WITH ACUTE). Latin-1 Supplement block. Hex DA, decimal 218. Used in Spanish, Portuguese, Hungarian, and other languages.
When writing words in Spanish (e.g. Único, Último, Útil), Portuguese, Hungarian (e.g. Új), and other languages that use this character, plus proper names and internationalized web content.
HTML code (&#218; or &#xDA;) or the named entity &Uacute; is used in HTML content. The CSS entity (\00DA) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ú but in different contexts.
Yes. The named HTML entity is &Uacute;. It is part of the standard HTML Latin-1 entity set and is well supported. You can also use &#218; or &#xDA; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

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