HTML Entity for Uppercase U Acute (Ú)

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
U+00DALatin-1 Supplement
ÚHexadecimal reference
ÚDecimal reference
ÚMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00DA";
}
</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 acute (Ú) and the named entity Ú are universally supported in modern browsers:
👀 Live Preview
See the uppercase U acute (Ú) in language and content contexts:
U (U+0055) | Ù (U grave) | Ü (U umlaut)🧠 How It Works
Named Entity
Ú is the standard named entity for Ú—readable in source HTML and part of the HTML Latin-1 entity set.
Hexadecimal Code
Ú uses the Unicode hexadecimal value DA to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ú uses the decimal Unicode value 218 to display the same character. A common method for Latin-1 characters.
CSS Entity
\00DA 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+00DA sits in Latin-1 Supplement. Lowercase equivalent: U+00FA (ú). Do not confuse with plain U (U+0055), Ù (U grave), or Ü (U umlaut).
Use Cases
The uppercase U acute (Ú) is commonly used in:
Sentence-initial words like Único, Último, and Útil for correct Spanish spelling.
Used in Útil and Último when capitalized at the start of a sentence or title.
Essential in words like Új (new) and other Hungarian vocabulary with acute U.
International and localized content that must display accented characters correctly.
Names of people, cities, and brands that start with or include Ú.
Courses, dictionaries, and educational materials teaching accented letters.
Correct spelling improves screen reader pronunciation and search indexing.
💡 Best Practices
Do
- Use
Úin HTML when possible for readability - Serve pages as UTF-8; you can also type Ú directly in UTF-8 source
- Set
langattributes (e.g.lang="es"orlang="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
Uwhen Ú is required for correct spelling - Confuse Ú (u acute) with Ù (u grave,
Ù) or Ü (u umlaut) - Put CSS escape
\00DAin 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
Four references render Ú; named entity is most readable
Ú Ú ÚFor CSS stylesheets, use the escape in the content property
\00DAUnicode U+00DA — LATIN CAPITAL LETTER U WITH ACUTE
Lowercase pair is U+00FA (ú, ú)
Previous: Uppercase U (U) Next: Uppercase U Breve
❓ Frequently Asked Questions
Ú (named), Ú (hex), Ú (decimal), or \00DA in CSS content. The named entity Ú 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.Ú or Ú) or the named entity Ú 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.Ú. It is part of the standard HTML Latin-1 entity set and is well supported. You can also use Ú or Ú for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
