HTML Entity for Lowercase A Acute (á)

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

What You'll Learn

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

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

⚡ Quick Reference — Lowercase A Acute Entity

Unicode U+00E1

Latin-1 Supplement

Hex Code á

Hexadecimal reference

HTML Code á

Decimal reference

Named Entity á

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00E1
Hex code       á
HTML code      á
Named entity   á
CSS code       \E1
Meaning        Latin small letter a with acute
Related        U+00C1 = Á (uppercase)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\E1";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xE1;</p>
<p>Symbol (decimal): &#225;</p>
<p>Symbol (named): &aacute;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase a acute (á) and the named entity &aacute; are universally supported in modern browsers:

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

👀 Live Preview

See the lowercase a acute (á) in language and content contexts:

Large glyphá
Spanishmás, nácar, está
Portugueseaté, lá, sábado
Named entity&aacute; renders as á
Numeric refs&#xE1; &#225; &aacute; \E1

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\E1 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+00E1 sits in Latin-1 Supplement. Uppercase equivalent: U+00C1 (&Aacute;). Do not confuse with plain a (U+0061).

Use Cases

The lowercase a acute (á) is commonly used in:

🇬🇧 Spanish & Portuguese

Essential in words like más, nácar (Spanish) and até, lá (Portuguese).

🌐 Internationalization

Websites and apps serving Spanish-, Portuguese-, or Hungarian-speaking audiences.

📝 Proper names

Names of people, cities, and brands that include á (e.g. María, São Paulo).

🔤 Linguistics

Language learning apps, dictionaries, and phonetic content.

📄 Publishing

Legal, academic, and editorial content in Romance and other languages.

🎨 Typography

Headlines, logos, and styled text requiring correct accented spelling.

🔍 Search & SEO

Correct rendering so users can find content (e.g. searching for “más”).

💡 Best Practices

Do

  • Use &aacute; 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") for correct pronunciation
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish á (U+00E1) from plain a (U+0061)—meaning can change (más vs mas)

Don’t

  • Substitute plain a when á is required for correct spelling
  • Put CSS escape \E1 in HTML text nodes
  • Assume all fonts render accented Latin-1 glyphs identically
  • Omit UTF-8 encoding on pages with accented characters
  • Mix entity styles randomly without reason in one file

Key Takeaways

1

Four references render á; named entity is most readable

&#xE1; &#225; &aacute;
2

For CSS stylesheets, use the escape in the content property

\E1
3

Unicode U+00E1 — LATIN SMALL LETTER A WITH ACUTE

4

Essential for Spanish, Portuguese, Hungarian, and i18n content

❓ Frequently Asked Questions

Use &aacute; (named), &#xE1; (hex), &#225; (decimal), or \E1 in CSS content. The named entity &aacute; is the most readable for HTML content.
U+00E1 (LATIN SMALL LETTER A WITH ACUTE). Latin-1 Supplement block. Hex E1, decimal 225. Used in Spanish, Portuguese, Hungarian, and other languages.
When writing words in Spanish (e.g. más, nácar), Portuguese (e.g. até), Hungarian, Irish, and other languages that use this character, plus proper names and internationalized web content.
HTML code (&#225; or &#xE1;) or the named entity &aacute; is used in HTML content. The CSS entity (\E1) 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 &aacute;. It is part of the standard HTML Latin-1 entity set and is well supported. You can also use &#225; or &#xE1; 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