HTML Entity for Uppercase A Umlaut (Ä)

What You'll Learn
How to display the uppercase A with diaeresis/umlaut (Ä) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for German, Swedish, Finnish, and other languages, it appears in words such as Ägypten (Egypt) and Männer (men) when capitalized. It is U+00C4 in the Latin-1 Supplement block.
Render it with Ä, Ä, Ä, or CSS escape \00C4. The named entity Ä is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase A Umlaut Entity
U+00C4Latin-1 Supplement
ÄHexadecimal reference
ÄDecimal reference
ÄMost readable option
Name Value
──────────── ──────────
Unicode U+00C4
Hex code Ä
HTML code Ä
Named entity Ä
CSS code \00C4
Meaning Latin capital letter A with diaeresis
Also known as A umlaut
Related U+00E4 = ä (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase A umlaut (Ä) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00C4";
}
</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 umlaut (Ä) and the named entity Ä are supported in all modern browsers:
👀 Live Preview
See the uppercase A umlaut (Ä) in German and Nordic contexts:
🧠 How It Works
Hexadecimal Code
Ä uses the Unicode hexadecimal value C4 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ä uses the decimal Unicode value 196 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
\00C4 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+00C4 sits in Latin-1 Supplement. Lowercase equivalent: U+00E4 (ä). Do not confuse with plain A (U+0041) or  (circumflex).
Use Cases
The uppercase A umlaut (Ä) is commonly used in:
All-caps text and headings (e.g. ÄGYPTEN, MÄNNER) with correct umlaut spelling.
Nordic languages that use Ä in capitalized words and proper names.
Websites and apps targeting German-speaking and Nordic audiences.
Dictionaries, vocabulary apps, and pronunciation guides for German.
Academic, editorial, and legal content with German names and place names.
Product names, brand names, and descriptions for German markets.
Correct rendering so German content is indexed and found by users searching for Ä.
💡 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="de",lang="sv", orlang="fi"on relevant content - Use fonts that support Latin-1 Supplement characters
- Distinguish Ä (umlaut) from plain
A(U+0041) and  (circumflex)
Don’t
- Substitute plain
AorAEwhen Ä is required for correct German spelling - Confuse Ä (umlaut) with à (tilde) or other accented A variants
- Put CSS escape
\00C4in 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
\00C4Unicode U+00C4 — LATIN CAPITAL LETTER A WITH DIAERESIS
Essential for German, Swedish, Finnish, and internationalized web content
Previous: Uppercase A Tilde (Ã) Next: Uppercase Ae
❓ Frequently Asked Questions
Ä (named), Ä (hex), Ä (decimal), or \00C4 in CSS content. All four methods render Ä correctly.U+00C4 (LATIN CAPITAL LETTER A WITH DIAERESIS). Latin-1 Supplement block. Hex C4, decimal 196. Used in German, Swedish, Finnish, and other languages.Ä or Ä) or the named entity Ä is used in HTML content. The CSS entity (\00C4) 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
