HTML Entity for Lowercase A Macron (ā)

What You'll Learn
How to display the lowercase a with macron (ā) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The macron indicates a long vowel and is used in Latin (e.g. ācer, māter), Hawaiian (e.g. lā), Māori, and linguistic notation. It is U+0101 in the Latin Extended-A block.
Render it with ā, ā, ā, or CSS escape \101. The named entity ā is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase A Macron Entity
U+0101Latin Extended-A
āHexadecimal reference
āDecimal reference
āMost readable option
Name Value
──────────── ──────────
Unicode U+0101
Hex code ā
HTML code ā
Named entity ā
CSS code \101
Meaning Latin small letter a with macron
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase a macron (ā) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\101";
}
</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 lowercase a macron (ā) and the named entity ā are supported in modern browsers:
👀 Live Preview
See the lowercase a macron (ā) in Latin, Hawaiian, and Māori contexts:
🧠 How It Works
Hexadecimal Code
ā uses the Unicode hexadecimal value 101 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ā uses the decimal Unicode value 257 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
\101 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+0101 sits in Latin Extended-A. The macron marks a long vowel—do not confuse with plain a (U+0061).
Use Cases
The lowercase a macron (ā) is commonly used in:
Marking long vowels in Latin (e.g. ācer, māter). Correct vowel length matters for pronunciation and scansion.
Used in Hawaiian (e.g. lā) and Māori. The macron indicates a long vowel and is required for correct spelling.
Names of people, places, and brands that include ā must display correctly for accessibility and SEO.
Phonetic transcriptions and linguistic notation use ā to represent a long open vowel.
Academic, educational, or editorial content in Latin, Hawaiian, Māori, or linguistics.
Headlines, logos, and styled text in Hawaiian or Latin requiring correct spelling.
Correct rendering so users can find Hawaiian place names and Latin text with long vowels.
💡 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
langattributes (e.g.lang="haw",lang="la") for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish ā (macron) from plain
a(U+0061)
Don’t
- Substitute plain
awhen ā is required for correct spelling - Omit the macron in Hawaiian or Māori where vowel length changes meaning
- Put CSS escape
\101in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render ā; named entity is most readable
ā ā āFor CSS stylesheets, use the escape in the content property
\101Unicode U+0101 — LATIN SMALL LETTER A WITH MACRON
Essential for Latin, Hawaiian, Māori, and linguistic notation
Previous: Lowercase A Latin Subscript (ₐ) Next: Lowercase A Ogonek
❓ Frequently Asked Questions
ā (named), ā (hex), ā (decimal), or \101 in CSS content. The named entity ā is the most readable for HTML content.U+0101 (LATIN SMALL LETTER A WITH MACRON). Latin Extended-A block. Hex 101, decimal 257. Used in Latin, Hawaiian, Māori, and linguistic notation.ā or ā) or the named entity ā is used in HTML content. The CSS entity (\101) 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
