HTML Entity for Uppercase A Double Grave (Ȁ)

What You'll Learn
How to display the uppercase 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+0200 in the Latin Extended-B block.
Render it with Ȁ, Ȁ, or CSS escape \200. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase A Double Grave Entity
U+0200Latin Extended-B
ȀHexadecimal reference
ȀDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0200
Hex code Ȁ
HTML code Ȁ
Named entity (none)
CSS code \200
Meaning Latin capital letter A with double grave
Related U+0201 = lowercase equivalent (ȁ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase A double grave (Ȁ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\200";
}
</style>
</head>
<body>
<p>Symbol (hex): Ȁ</p>
<p>Symbol (decimal): Ȁ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase A double grave (Ȁ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase A double grave (Ȁ) and its references:
AA🧠 How It Works
Hexadecimal Code
Ȁ uses the Unicode hexadecimal value 200 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ȁ uses the decimal Unicode value 512 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\200 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+0200 sits in Latin Extended-B. Lowercase equivalent: U+0201 (ȁ). There is no named HTML entity. Do not confuse with À (single grave) or Ǡ (dot above + macron—different character, similar glyph).
Use Cases
The uppercase 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
- Confuse Ȁ with Ǡ (dot above + macron)—different Unicode characters
- Put CSS escape
\200in HTML text nodes - Assume all fonts render Latin Extended-B double-grave glyphs
Key Takeaways
Three references render Ȁ (no named entity)
Ȁ ȀFor CSS stylesheets, use the escape in the content property
\200Unicode U+0200 — LATIN CAPITAL LETTER A WITH DOUBLE GRAVE
Used in Slavic linguistics, tone notation, and phonetic transcription
Previous: Uppercase A Diaeresis Macron (Ǟ) Next: Uppercase A Grave
❓ Frequently Asked Questions
Ȁ (hex), Ȁ (decimal), or \200 in CSS content. There is no named HTML entity for this character.U+0200 (LATIN CAPITAL LETTER A WITH DOUBLE GRAVE). Latin Extended-B block. Hex 200, decimal 512. Used in Slavic linguistics for tone or stress notation.Ȁ or Ȁ) is used in HTML content. The CSS entity (\200) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ȁ but in different contexts.Ȁ or Ȁ in HTML, or \200 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
