HTML Entity for Uppercase Ae Dash (Ǣ)

What You'll Learn
How to display the uppercase ae with macron (Ǣ) in HTML using hexadecimal, decimal, and CSS escape methods. This character combines the AE ligature (Æ) with a macron (overline) and is used in linguistic text, phonetic scripts, and extended Latin orthography. It is U+01E2 in the Latin Extended-B block.
Render it with Ǣ, Ǣ, or CSS escape \01E2. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase Ae Dash Entity
U+01E2Latin Extended-B
ǢHexadecimal reference
ǢDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01E2
Hex code Ǣ
HTML code Ǣ
Named entity (none)
CSS code \01E2
Meaning Latin capital letter AE with macron
Related U+01E3 = lowercase (ǣ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase ae dash (Ǣ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01E2";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǣ</p>
<p>Symbol (decimal): Ǣ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase ae dash (Ǣ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase ae dash (Ǣ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ǣ uses the Unicode hexadecimal value 01E2 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǣ uses the decimal Unicode value 482 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01E2 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ǣ. Unicode U+01E2 sits in Latin Extended-B. Lowercase equivalent: U+01E3 (ǣ). Do not confuse Ǣ with Æ (AE ligature, U+00C6). There is no named HTML entity.
Use Cases
The uppercase ae dash (Ǣ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the uppercase ae-with-macron character.
Dictionary entries, scholarly texts, and language references with extended Latin characters.
Websites requiring correct rendering of Latin Extended-B for linguistic or specialized content.
Books, articles, and editorial content with phonetic scripts or specialized terminology using Ǣ.
Extended Latin orthographic systems combining the AE ligature with a macron diacritic.
Correct encoding so specialized content is indexed and displayed consistently.
User input that may contain Ǣ; use UTF-8 encoding and numeric entities as needed.
💡 Best Practices
Do
- Use
ǢorǢin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ǣ directly in UTF-8 source
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ǣ from Æ (AE ligature) and Ǽ (AE acute)
Don’t
- Assume a named entity exists—there is none for Ǣ
- Substitute Æ or plain
AEwhen Ǣ is required for accuracy - Put CSS escape
\01E2in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Three references render Ǣ (no named entity)
Ǣ ǢFor CSS stylesheets, use the escape in the content property
\01E2Unicode U+01E2 — LATIN CAPITAL LETTER AE WITH MACRON
Used in linguistic notation, phonetic scripts, and extended Latin orthography
Previous: Uppercase Ae Acute (Ǽ) Next: Uppercase B
❓ Frequently Asked Questions
Ǣ (hex), Ǣ (decimal), or \01E2 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01E2 (LATIN CAPITAL LETTER AE WITH MACRON). Latin Extended-B block. Hex 01E2, decimal 482. Used in linguistic and phonetic notation.Ǣ or Ǣ) is used in HTML content. The CSS entity (\01E2) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǣ but in different contexts.Ǣ or Ǣ in HTML, or \01E2 in CSS. This is standard for many Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, ligatures, and more.
8 people found this page helpful
