HTML Entity for Lowercase Ae Acute (ǽ)

What You'll Learn
How to display the lowercase 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+01FD in the Latin Extended-B block.
Render it with ǽ, ǽ, or CSS escape \01FD. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase Ae Acute Entity
U+01FDLatin Extended-B
ǽHexadecimal reference
ǽDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01FD
Hex code ǽ
HTML code ǽ
Named entity (none)
CSS code \01FD
Meaning Latin small letter ae with acute
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase ae acute (ǽ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01FD";
}
</style>
</head>
<body>
<p>Symbol (hex): ǽ</p>
<p>Symbol (decimal): ǽ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase ae acute (ǽ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the lowercase ae acute (ǽ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
ǽ uses the Unicode hexadecimal value 01FD to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǽ uses the decimal Unicode value 509 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01FD 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+01FD sits in Latin Extended-B. Do not confuse ǽ with æ (ae ligature, U+00E6). There is no named HTML entity.
Use Cases
The lowercase ae acute (ǽ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the 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 æ when ǽ is required for accuracy
- Put CSS escape
\01FDin 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
\01FDUnicode U+01FD — LATIN SMALL LETTER AE WITH ACUTE
Used in linguistic notation, Old Norse, and extended Latin orthography
Previous: Lowercase Ae (æ) Next: Lowercase Ae Dash
❓ Frequently Asked Questions
ǽ (hex), ǽ (decimal), or \01FD in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01FD (LATIN SMALL LETTER AE WITH ACUTE). Latin Extended-B block. Hex 01FD, decimal 509. Used in linguistic and historical notation, including Old Norse.ǽ or ǽ) is used in HTML content. The CSS entity (\01FD) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ǽ but in different contexts.ǽ or ǽ in HTML, or \01FD 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
