HTML Entity for Uppercase Ae (Æ)

What You'll Learn
How to display the uppercase AE ligature (Æ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Also known as ash in Old English, this character is a letter in Danish and Norwegian and appears in all-caps words such as ÆBLE (apple) and classical spellings like ENCYCLOPÆDIA. It is U+00C6 in the Latin-1 Supplement block.
Render it with Æ, Æ, Æ, or CSS escape \00C6. The named entity Æ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase Ae Entity
U+00C6Latin-1 Supplement
ÆHexadecimal reference
ÆDecimal reference
ÆMost readable option
Name Value
──────────── ──────────
Unicode U+00C6
Hex code Æ
HTML code Æ
Named entity Æ
CSS code \00C6
Meaning Latin capital letter AE
Also known as ash (ligature)
Related U+00E6 = æ (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase AE ligature (Æ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00C6";
}
</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 AE ligature (Æ) and the named entity Æ are supported in all modern browsers:
👀 Live Preview
See the uppercase AE ligature (Æ) in Scandinavian and classical contexts:
🧠 How It Works
Hexadecimal Code
Æ uses the Unicode hexadecimal value C6 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Æ uses the decimal Unicode value 198 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
\00C6 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+00C6 sits in Latin-1 Supplement. Lowercase equivalent: U+00E6 (æ). Do not substitute plain AE when Æ is required.
Use Cases
The uppercase AE ligature (Æ) is commonly used in:
All-caps text with correct spelling (e.g. ÆBLE, LÆRER). Æ is a distinct letter, not A+E.
Traditional spellings such as ENCYCLOPÆDIA and other Latin-derived words.
Old English (ash), phonetic notation, and language research using ligature characters.
Websites and apps targeting Scandinavian audiences requiring Æ.
Academic, editorial, and legal content with Scandinavian names and classical spellings.
Correct rendering so content with Æ is indexed and found by users.
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="da"orlang="no"on Scandinavian content - Use fonts that support Latin-1 Supplement characters
- Distinguish Æ (ligature) from plain
AE(two letters)
Don’t
- Substitute
AEwhen Æ is required for correct Danish or Norwegian spelling - Confuse Æ (ligature) with Ä (umlaut) or other accented variants
- Put CSS escape
\00C6in HTML text nodes - Assume all fonts render Latin-1 ligature 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
\00C6Unicode U+00C6 — LATIN CAPITAL LETTER AE
Essential for Danish, Norwegian, Old English, and classical web content
Previous: Uppercase A Umlaut (Ä) Next: Uppercase Ae Acute
❓ Frequently Asked Questions
Æ (named), Æ (hex), Æ (decimal), or \00C6 in CSS content. All four methods render Æ correctly.U+00C6 (LATIN CAPITAL LETTER AE). Latin-1 Supplement block. Hex C6, decimal 198. Used in Danish, Norwegian, Old English, and classical typography.Æ or Æ) or the named entity Æ is used in HTML content. The CSS entity (\00C6) 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
