HTML Entity for Uppercase A Macron (Ā)

What You'll Learn
How to display the uppercase A with macron (Ā) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The macron indicates a long vowel and is used in Latvian, Lithuanian, Latin, Māori, and linguistic notation. It is U+0100 in the Latin Extended-A block.
Render it with Ā, Ā, Ā, or CSS escape \100. The named entity Ā is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase A Macron Entity
U+0100Latin Extended-A
ĀHexadecimal reference
ĀDecimal reference
ĀMost readable option
Name Value
──────────── ──────────
Unicode U+0100
Hex code Ā
HTML code Ā
Named entity Ā
CSS code \100
Meaning Latin capital letter A with macron
Related U+0101 = ā (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase A macron (Ā) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\100";
}
</style>
</head>
<body>
<p>Symbol (hex): Ā</p>
<p>Symbol (decimal): Ā</p>
<p>Symbol (named): Ā</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase A macron (Ā) and the named entity Ā are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase A macron (Ā) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ā uses the Unicode hexadecimal value 100 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ā uses the decimal Unicode value 256 to display the same character. A common method for Latin Extended-A characters.
Named Entity
Ā is the standard named entity for Ā—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\100 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ā. Unicode U+0100 sits in Latin Extended-A. Lowercase equivalent: U+0101 (ā). Do not confuse with plain A (U+0041) or the combining macron alone.
Use Cases
The uppercase A macron (Ā) is commonly used in:
Essential in Baltic languages where Ā marks a long vowel sound.
Used in Latin texts and dictionaries to indicate long vowels (macron notation).
Websites and apps for Baltic, Māori, or other macron-using languages.
Phonetic transcriptions and language learning materials using macron diacritics.
Correct spelling in Māori and related orthographies using long vowels.
Academic, editorial, and dictionary content with extended Latin characters.
Correct rendering so users can find content with proper macron spelling.
💡 Best Practices
Do
- Use
Āin HTML when possible for readability - Serve pages as UTF-8; you can also type Ā directly in UTF-8 source
- Set appropriate
langattributes (e.g.lang="lv",lang="mi") - Use fonts that support Latin Extended-A (U+0100–U+017F)
- Distinguish Ā (macron) from plain
A(U+0041) and Ă (breve)
Don’t
- Substitute plain
Awhen Ā is required for correct spelling - Confuse Ā (macron) with Ă (breve) or ¯ (combining macron alone)
- Put CSS escape
\100in HTML text nodes - Assume all fonts render Latin Extended-A macron glyphs
- Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render Ā; named entity is most readable
Ā Ā ĀFor CSS stylesheets, use the escape in the content property
\100Unicode U+0100 — LATIN CAPITAL LETTER A WITH MACRON
Essential for Latvian, Lithuanian, Latin, Māori, and i18n content
Previous: Uppercase A Inverted Breve (Ȃ) Next: Uppercase A Ogonek
❓ Frequently Asked Questions
Ā (named), Ā (hex), Ā (decimal), or \100 in CSS content. The named entity Ā is the most readable for HTML content.U+0100 (LATIN CAPITAL LETTER A WITH MACRON). Latin Extended-A block. Hex 100, decimal 256. Used in Latvian, Lithuanian, Latin, Māori, and linguistic notation.Ā or Ā) or the named entity Ā is used in HTML content. The CSS entity (\100) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ā but in different contexts.Ā. It is part of the standard HTML5 entity set and is well supported. You can also use Ā or Ā for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
