HTML Entity for Uppercase Ae Acute (Ǽ)

What You'll Learn
How to display the uppercase ae with acute (Ǽ) in HTML using hexadecimal, decimal, and CSS escape methods. This character combines the AE ligature (Æ) with an acute accent and is used in certain linguistic and historical contexts, including Old Norse and extended Latin orthography. It is U+01FC in the Latin Extended-B block.
Render it with Ǽ, Ǽ, or CSS escape \01FC. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase Ae Acute Entity
U+01FCLatin Extended-B
ǼHexadecimal reference
ǼDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01FC
Hex code Ǽ
HTML code Ǽ
Named entity (none)
CSS code \01FC
Meaning Latin capital letter AE with acute
Related U+01FD = lowercase (ǽ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase ae acute (Ǽ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01FC";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǽ</p>
<p>Symbol (decimal): Ǽ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase ae acute (Ǽ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase ae acute (Ǽ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ǽ uses the Unicode hexadecimal value 01FC to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǽ uses the decimal Unicode value 508 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01FC 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+01FC sits in Latin Extended-B. Lowercase equivalent: U+01FD (ǽ). Do not confuse Ǽ with Æ (AE ligature, U+00C6). There is no named HTML entity.
Use Cases
The uppercase ae acute (Ǽ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the uppercase ae-with-acute character.
Dictionary entries, scholarly texts, and language references with Old Norse or extended Latin characters.
Websites requiring correct rendering of Latin Extended-B for linguistic or historical content.
Books, articles, and editorial content with historical texts or specialized terminology using Ǽ.
Extended Latin orthographic systems combining the AE ligature with acute accent.
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 other accented characters
Don’t
- Assume a named entity exists—there is none for Ǽ
- Substitute Æ or plain
AEwhen Ǽ is required for accuracy - Put CSS escape
\01FCin 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
\01FCUnicode U+01FC — LATIN CAPITAL LETTER AE WITH ACUTE
Used in linguistic notation, Old Norse, and extended Latin orthography
Previous: Uppercase Ae (Æ) Next: Uppercase Ae Dash
❓ Frequently Asked Questions
Ǽ (hex), Ǽ (decimal), or \01FC in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01FC (LATIN CAPITAL LETTER AE WITH ACUTE). Latin Extended-B block. Hex 01FC, decimal 508. Used in linguistic and historical notation, including Old Norse.Ǽ or Ǽ) is used in HTML content. The CSS entity (\01FC) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǽ but in different contexts.Ǽ or Ǽ in HTML, or \01FC 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
