HTML Entity for Lowercase A Dot Above Macron (ǡ)

What You'll Learn
How to display the lowercase a with dot above and macron (ǡ) in HTML using hexadecimal, decimal, and CSS escape methods. This character combines a dot above and a macron (horizontal line) and is used primarily in Uralicist linguistic notation. It is U+01E1 in the Latin Extended-B block.
Render it with ǡ, ǡ, or CSS escape \1E1. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase A Dot Above Macron Entity
U+01E1Latin Extended-B
ǡHexadecimal reference
ǡDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01E1
Hex code ǡ
HTML code ǡ
Named entity (none)
CSS code \1E1
Meaning Latin small letter a with dot above and macron
Related U+01E0 = uppercase equivalent (Ǡ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase a dot above macron (ǡ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1E1";
}
</style>
</head>
<body>
<p>Symbol (hex): ǡ</p>
<p>Symbol (decimal): ǡ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase a dot above macron (ǡ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the lowercase a dot above macron (ǡ) and its references:
🧠 How It Works
Hexadecimal Code
ǡ uses the Unicode hexadecimal value 01E1 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǡ uses the decimal Unicode value 481 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\1E1 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+01E1 sits in Latin Extended-B. Uppercase equivalent: U+01E0 (Ǡ). There is no named HTML entity. Do not confuse with ȧ (dot above only) or ā (macron only).
Use Cases
The lowercase a dot above macron (ǡ) is commonly used in:
Transcribe Uralic languages and linguistic data using the standard ǡ character.
Represent extended Latin characters in linguistics, philology, and language research.
Display headwords and pronunciation symbols in language reference works.
Showcase Latin Extended-B coverage in font demos and type design.
Display characters used in Uralic and other languages with extended Latin.
Document Latin Extended-B and linguistic character sets.
Support proper rendering of minority and historical language orthographies.
💡 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
- Use fonts with Latin Extended-B coverage for combined diacritics
- Provide context when using Uralicist notation in mixed content
- Distinguish ǡ from ȧ (dot above only) and ā (macron only)
Don’t
- Assume a named entity exists—there is none for ǡ
- Substitute ȧ or ā when ǡ is required
- Put CSS escape
\1E1in 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
\1E1Unicode U+01E1 — LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON
Primary use: Uralicist linguistic transcription and extended Latin typography
Previous: Lowercase A Dot Above (ȧ) Next: Lowercase A Double Grave
❓ Frequently Asked Questions
ǡ (hex), ǡ (decimal), or \1E1 in CSS content. There is no named HTML entity for this character.U+01E1 (LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON). Latin Extended-B block. Hex 01E1, decimal 481. Used in Uralicist and linguistic notation.ǡ or ǡ) is used in HTML content. The CSS entity (\1E1) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ǡ but in different contexts.ǡ or ǡ) or CSS \1E1. This is standard for Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
