HTML Entity for Lowercase A Diaeresis Macron (ǟ)

What You'll Learn
How to display the lowercase a with diaeresis and macron (ǟ) in HTML using hexadecimal, decimal, and CSS escape methods. This character combines the diaeresis (two dots) and macron (long mark) diacritics and is used in linguistics, phonetic transcription, and some Baltic and Finno-Ugric language orthographies. It is U+01DF in the Latin Extended-B block.
Render it with ǟ, ǟ, or CSS escape \1DF. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase A Diaeresis Macron Entity
U+01DFLatin Extended-B
ǟHexadecimal reference
ǟDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01DF
Hex code ǟ
HTML code ǟ
Named entity (none)
CSS code \1DF
Meaning Latin small letter a with diaeresis and macron
Related U+01DE = uppercase equivalent (Ǟ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase a diaeresis macron (ǟ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1DF";
}
</style>
</head>
<body>
<p>Symbol (hex): ǟ</p>
<p>Symbol (decimal): ǟ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase a diaeresis macron (ǟ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the lowercase a diaeresis macron (ǟ) and its references:
aa🧠 How It Works
Hexadecimal Code
ǟ uses the Unicode hexadecimal value 1DF to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǟ uses the decimal Unicode value 479 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\1DF 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+01DF sits in Latin Extended-B. Uppercase equivalent: U+01DE (Ǟ). There is no named HTML entity. Do not confuse with ä (diaeresis only) or ā (macron only).
Use Cases
The lowercase a diaeresis macron (ǟ) is commonly used in:
Phonetic transcriptions and linguistic descriptions requiring both diaeresis and macron on a.
Websites and apps for languages that use this character in their orthography.
Dictionaries and learning resources showing correct spelling with combined diacritics.
Academic, editorial, or scholarly content with precise character encoding.
Headlines and styled text in linguistics or language-specific contexts.
Correct rendering so specialized linguistic content can be found and indexed.
Romanization systems that use ǟ to represent a specific sound or letter.
💡 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
- Set appropriate
langattributes for language-specific content - Use fonts that support Latin Extended-B combined diacritics
- Distinguish ǟ from ä (U+00E4), ā (U+0101), and plain
a(U+0061)
Don’t
- Assume a named entity exists—there is none for ǟ
- Substitute ä or ā when ǟ is required
- Put CSS escape
\1DFin HTML text nodes - Assume all fonts render Latin Extended-B combined diacritics
- Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Three references render ǟ (no named entity)
ǟ ǟFor CSS stylesheets, use the escape in the content property
\1DFUnicode U+01DF — LATIN SMALL LETTER A WITH DIAERESIS AND MACRON
Used in linguistics, phonetics, and some Baltic / Finno-Ugric orthographies
Previous: Lowercase A Circumflex (â) Next: Lowercase A Dot Above
❓ Frequently Asked Questions
ǟ (hex), ǟ (decimal), or \1DF in CSS content. There is no named HTML entity for this character.U+01DF (LATIN SMALL LETTER A WITH DIAERESIS AND MACRON). Latin Extended-B block. Hex 1DF, decimal 479. Combines diaeresis and macron diacritical marks.ǟ or ǟ) is used in HTML content. The CSS entity (\1DF) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ǟ but in different contexts.ǟ or ǟ in HTML, or \1DF in CSS. This is standard for many Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
