HTML Entity for Uppercase A Ring (Å)

What You'll Learn
How to display the uppercase 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 Ångström and Åland. It is U+00C5 in the Latin-1 Supplement block.
Render it with Å, Å, Å, or CSS escape \00C5. The named entity Å is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase A Ring Entity
U+00C5Latin-1 Supplement
ÅHexadecimal reference
ÅDecimal reference
ÅMost readable option
Name Value
──────────── ──────────
Unicode U+00C5
Hex code Å
HTML code Å
Named entity Å
CSS code \00C5
Meaning Latin capital letter A with ring above
Related U+00E5 = å (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase A ring (Å) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00C5";
}
</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 A ring (Å) and the named entity Å are supported in all modern browsers:
👀 Live Preview
See the uppercase A ring (Å) in Scandinavian and Nordic contexts:
🧠 How It Works
Hexadecimal Code
Å uses the Unicode hexadecimal value C5 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Å uses the decimal Unicode value 197 to display the same character. One of the most commonly used methods in HTML.
Named Entity
Å is the standard named entity for Å—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\00C5 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+00C5 sits in Latin-1 Supplement. Lowercase equivalent: U+00E5 (å). Do not confuse with plain A (U+0041).
Use Cases
The uppercase A ring (Å) is commonly used in:
Correct spelling of Swedish, Norwegian, Danish, and Finnish words and names (e.g. Ångström, Åland, Ålesund).
Pronunciation guides, vocabulary, and dictionary entries for Nordic languages.
Websites and apps targeting Scandinavian or Finnish audiences.
Academic papers, books, and editorial content with Nordic names and place names.
Product names, brand names, and descriptions for Nordic markets.
Correct rendering so Nordic content is indexed and found by users searching for Å.
Name fields, addresses, and user input that may contain Scandinavian characters.
💡 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
lang="sv",lang="no", orlang="da"on Nordic content - Use fonts that support Latin-1 Supplement characters
- Distinguish Å (ring) from plain
A(U+0041)
Don’t
- Substitute plain
Awhen Šis required for correct Nordic spelling - Confuse Š(ring) with  (circumflex) or other accented A variants
- Put CSS escape
\00C5in HTML text nodes - Assume all fonts render Latin-1 glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Four references render Å; named entity is most readable
Å Å ÅFor CSS stylesheets, use the escape in the content property
\00C5Unicode U+00C5 — LATIN CAPITAL LETTER A WITH RING ABOVE
Essential for Swedish, Norwegian, Danish, Finnish, and Nordic web content
Previous: Uppercase A Ogonek (Ą) Next: Uppercase A Stroke
❓ Frequently Asked Questions
Å (named), Å (hex), Å (decimal), or \00C5 in CSS content. All four methods render Å correctly.U+00C5 (LATIN CAPITAL LETTER A WITH RING ABOVE). Latin-1 Supplement block. Hex C5, decimal 197. Used in Swedish, Norwegian, Danish, and Finnish.Å or Å) or the named entity Å is used in HTML content. The CSS entity (\00C5) 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 HTML5 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
