HTML Entity for Lowercase A Ring (å)

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

What You'll Learn

How to display the lowercase a with ring above (å) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Scandinavian languages (Swedish, Norwegian, Danish) and Finnish, it appears in names and words such as Malmö and Gåte. It is U+00E5 in the Latin-1 Supplement block.

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

⚡ Quick Reference — Lowercase A Ring Entity

Unicode U+00E5

Latin-1 Supplement

Hex Code å

Hexadecimal reference

HTML Code å

Decimal reference

Named Entity å

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00E5
Hex code       å
HTML code      å
Named entity   å
CSS code       \00E5
Meaning        Latin small letter a with ring above
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00E5";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xE5;</p>
<p>Symbol (decimal): &#229;</p>
<p>Symbol (named): &aring;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase a ring (å) and the named entity &aring; are supported in all modern browsers:

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

👀 Live Preview

See the lowercase a ring (å) in Scandinavian and Nordic contexts:

Large glyphå
Swedish examplesMalmö, Gåte, Åland
Named entity&aring; renders as å
Not the same asplain a (U+0061)
Numeric refs&#xE5; &#229; &aring; \00E5

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#229; uses the decimal Unicode value 229 to display the same character. One of the most commonly used methods in HTML.

HTML markup
3

Named Entity

&aring; is the standard named entity for å—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\00E5 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+00E5 sits in Latin-1 Supplement. In Nordic languages, å is a distinct letter—do not confuse with plain a (U+0061).

Use Cases

The lowercase a ring (å) is commonly used in:

🌍 Scandinavian

Correct spelling of Swedish, Norwegian, Danish, and Finnish words and names (e.g. Gåte, Malmö, Åland).

📚 Language Learning

Pronunciation guides, vocabulary, and dictionary entries for Nordic languages.

🌐 Internationalization

Websites and apps targeting Scandinavian or Finnish audiences.

📄 Publishing

Academic papers, books, and editorial content with Nordic names and place names.

🏷️ E-commerce

Product names, brand names, and descriptions for Nordic markets.

🔍 Search & SEO

Correct rendering so Nordic content is indexed and found by users searching for å.

📧 Forms & Input

Name fields, addresses, and user input that may contain Scandinavian characters.

💡 Best Practices

Do

  • Use &aring; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type å directly in UTF-8 source
  • Set lang="sv", lang="no", or lang="da" on Nordic content
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish å (ring) from plain a (U+0061)

Don’t

  • Substitute plain a when å is required for correct Nordic spelling
  • Confuse å (ring) with ā (macron) or other accented a variants
  • Put CSS escape \00E5 in HTML text nodes
  • Assume all fonts render Latin-1 glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Four references render å; named entity is most readable

&#xE5; &#229; &aring;
2

For CSS stylesheets, use the escape in the content property

\00E5
3

Unicode U+00E5 — LATIN SMALL LETTER A WITH RING ABOVE

4

Essential for Swedish, Norwegian, Danish, Finnish, and Nordic web content

❓ Frequently Asked Questions

Use &aring; (named), &#xE5; (hex), &#229; (decimal), or \00E5 in CSS content. All four methods render å correctly.
U+00E5 (LATIN SMALL LETTER A WITH RING ABOVE). Latin-1 Supplement block. Hex E5, decimal 229. Used in Swedish, Norwegian, Danish, and Finnish.
For Scandinavian names and words (e.g. Malmö, Gåte), language learning and dictionary sites, internationalized Nordic content, academic publishing, and any text requiring correct Nordic spelling.
HTML code (&#229; or &#xE5;) or the named entity &aring; is used in HTML content. The CSS entity (\00E5) is used in CSS, e.g. in the content property of pseudo-elements. Both produce å but in different contexts.
The named entity &aring; is easier to read and maintain in hand-written HTML. Numeric codes (&#229; or &#xE5;) are useful when generating HTML programmatically. All produce the same character å.

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