HTML Entity for Lowercase A Double Grave (ȁ)

What You'll Learn
How to display the lowercase a with double grave (ȁ) in HTML using hexadecimal, decimal, and CSS escape methods. The double grave is a diacritical mark used in Slavic linguistics (e.g. Slovenian, Croatian) for tone or stress notation. This character is U+0201 in the Latin Extended-B block.
Render it with ȁ, ȁ, or CSS escape \201. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase A Double Grave Entity
U+0201Latin Extended-B
ȁHexadecimal reference
ȁDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0201
Hex code ȁ
HTML code ȁ
Named entity (none)
CSS code \201
Meaning Latin small letter a with double grave
Related U+0200 = uppercase equivalent (Ȁ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase a double grave (ȁ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\201";
}
</style>
</head>
<body>
<p>Symbol (hex): ȁ</p>
<p>Symbol (decimal): ȁ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase a double grave (ȁ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the lowercase a double grave (ȁ) and its references:
aa🧠 How It Works
Hexadecimal Code
ȁ uses the Unicode hexadecimal value 201 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȁ uses the decimal Unicode value 513 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\201 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+0201 sits in Latin Extended-B. Uppercase equivalent: U+0200 (Ȁ). There is no named HTML entity. Do not confuse with à (single grave, U+00E0).
Use Cases
The lowercase a double grave (ȁ) is commonly used in:
Slovenian, Croatian, and other Slavic notation for tone, stress, or phonetic representation.
Websites and apps for Slavic languages or linguistic research requiring ȁ.
Dictionaries and learning resources showing correct tone with double-grave diacritics.
Academic and scholarly content in Slavic linguistics or phonetics.
Headlines and styled text in linguistics or Slavic language contexts.
Correct rendering so specialized linguistic content can be found and indexed.
Tone or stress transcription systems using the double grave diacritic.
💡 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
lang="sl"orlang="hr"for Slavic language content - Use fonts that support Latin Extended-B diacritics
- Distinguish ȁ (double grave) from à (single grave) and plain
a
Don’t
- Assume a named entity exists—there is none for ȁ
- Substitute à (single grave) when ȁ (double grave) is required
- Put CSS escape
\201in HTML text nodes - Assume all fonts render Latin Extended-B double-grave glyphs
- 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
\201Unicode U+0201 — LATIN SMALL LETTER A WITH DOUBLE GRAVE
Used in Slavic linguistics, tone notation, and phonetic transcription
Previous: Lowercase A Dot Above Macron (ǡ) Next: Lowercase A Grave
❓ Frequently Asked Questions
ȁ (hex), ȁ (decimal), or \201 in CSS content. There is no named HTML entity for this character.U+0201 (LATIN SMALL LETTER A WITH DOUBLE GRAVE). Latin Extended-B block. Hex 201, decimal 513. Used in Slavic linguistics for tone or stress notation.ȁ or ȁ) is used in HTML content. The CSS entity (\201) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ȁ but in different contexts.ȁ or ȁ in HTML, or \201 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
