HTML Entity for Uppercase A Dot Above Macron (Ǡ)

What You'll Learn
How to display the uppercase 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+01E0 in the Latin Extended-B block.
Render it with Ǡ, Ǡ, or CSS escape \1E0. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase A Dot Above Macron Entity
U+01E0Latin Extended-B
ǠHexadecimal reference
ǠDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01E0
Hex code Ǡ
HTML code Ǡ
Named entity (none)
CSS code \1E0
Meaning Latin capital letter A with dot above and macron
Related U+01E1 = lowercase equivalent (ǡ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase A dot above macron (Ǡ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1E0";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǡ</p>
<p>Symbol (decimal): Ǡ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase A dot above macron (Ǡ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase A dot above macron (Ǡ) and its references:
🧠 How It Works
Hexadecimal Code
Ǡ uses the Unicode hexadecimal value 01E0 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǡ uses the decimal Unicode value 480 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\1E0 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+01E0 sits in Latin Extended-B. Lowercase equivalent: U+01E1 (ǡ). There is no named HTML entity. Do not confuse with Ȧ (dot above only) or Ā (macron only).
Use Cases
The uppercase 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
- Confuse Ǡ with Ǎ (
&Acaron;, caron only) - Put CSS escape
\1E0in HTML text nodes - Assume all fonts render Latin Extended-B combined diacritics
Key Takeaways
Three references render Ǡ (no named entity)
Ǡ ǠFor CSS stylesheets, use the escape in the content property
\1E0Unicode U+01E0 — LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON
Primary use: Uralicist linguistic transcription and extended Latin typography
Previous: Uppercase A Caron (Ǎ) Next: Uppercase A Circumflex
❓ Frequently Asked Questions
Ǡ (hex), Ǡ (decimal), or \1E0 in CSS content. There is no named HTML entity for this character.U+01E0 (LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON). Latin Extended-B block. Hex 01E0, decimal 480. Used in Uralicist and linguistic notation.Ǡ or Ǡ) is used in HTML content. The CSS entity (\1E0) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǡ but in different contexts.Ǡ or Ǡ) or CSS \1E0. 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
