HTML Entity for Lowercase U Acute (ú)

What You'll Learn
How to display the lowercase u with acute accent (ú) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00FA in the Latin-1 Supplement block and is essential for Spanish, Portuguese, and other languages.
Render it with ú, ú, ú, or CSS escape \00FA. The named entity ú is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase U Acute Entity
U+00FALatin-1 Supplement
úHexadecimal reference
úDecimal reference
úMost readable option
Name Value
──────────── ──────────
Unicode U+00FA
Hex code ú
HTML code ú
Named entity ú
CSS code \00FA
Meaning Latin small letter u with acute
Related U+00DA = Ú (uppercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase u acute (ú) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00FA";
}
</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 lowercase u acute (ú) and the named entity ú are universally supported in modern browsers:
👀 Live Preview
See the lowercase u acute (ú) in language and content contexts:
u (U+0075) | ü (u umlaut)🧠 How It Works
Hexadecimal Code
ú uses the Unicode hexadecimal value FA to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ú uses the decimal Unicode value 250 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
\00FA 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+00FA sits in Latin-1 Supplement. Uppercase equivalent: U+00DA (Ú). Do not confuse with plain u (U+0075) or ü (u umlaut).
Use Cases
The lowercase u acute (ú) is commonly used in:
Essential in words like tú, único, música, and Perú for correct Spanish spelling.
Used in saúde, útil, and último for proper Portuguese orthography.
International and localized content that must display accented characters correctly.
Names of people, cities, and countries that include ú (e.g. Perú, Jesús).
Courses, dictionaries, and educational materials teaching accented letters.
Articles, blogs, and published content quoting Spanish and Portuguese words.
Correct spelling improves screen reader pronunciation and search indexing (e.g. tú vs tu).
💡 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="pt") for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish ú (U+00FA) from plain
u(U+0075)—meaning can change (tú vs tu)
Don’t
- Substitute plain
uwhen ú is required for correct spelling - Use the old incorrect CSS escape
\000FA—the correct value is\00FA - Put CSS escape
\00FAin HTML text nodes - Confuse ú (u acute) with ü (u umlaut)
- 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
\00FAUnicode U+00FA — LATIN SMALL LETTER U WITH ACUTE
Essential for Spanish, Portuguese, and i18n content
Previous: Lowercase U (u) Next: Lowercase U Breve
❓ Frequently Asked Questions
ú (named), ú (hex), ú (decimal), or \00FA in CSS content. The named entity ú is the most readable for HTML content.U+00FA (LATIN SMALL LETTER U WITH ACUTE). Latin-1 Supplement block. Hex FA, decimal 250. Used in Spanish, Portuguese, and other languages.ú or ú) or the named entity ú is used in HTML content. The CSS entity (\00FA) 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
