HTML Entity for Uppercase A Double Grave (Ȁ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0200

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

Unicode U+0200

Latin Extended-B

Hex Code Ȁ

Hexadecimal reference

HTML Code Ȁ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the uppercase A double grave (Ȁ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\200";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x200;</p>
<p>Symbol (decimal): &#512;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase A double grave (Ȁ) renders correctly in modern browsers when UTF-8 is used:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase A double grave (Ȁ) and its references:

Large glyphȀ
DiacriticDouble grave accent on A
Case pairȀ (U+0200) / ȁ (U+0201)
Not the same asÀ (single grave), Ǡ (dot + macron), or plain A
Numeric refs&#x200; &#512; \200

🧠 How It Works

1

Hexadecimal Code

&#x200; uses the Unicode hexadecimal value 200 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#512; uses the decimal Unicode value 512 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

\200 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

🔤 Slavic linguistics

Slovenian, Croatian, and other Slavic notation for tone, stress, or phonetic representation.

🌐 Internationalization

Websites and apps for Slavic languages or linguistic research requiring Ȁ.

📚 Language learning

Dictionaries and learning resources showing correct tone with double-grave diacritics.

📄 Publishing

Academic and scholarly content in Slavic linguistics or phonetics.

🎨 Typography

Headlines and styled text in linguistics or Slavic language contexts.

🔍 Search & SEO

Correct rendering so specialized linguistic content can be found and indexed.

📝 Phonetic transcription

Tone or stress transcription systems using the double grave diacritic.

💡 Best Practices

Do

  • Use &#512; or &#x200; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type Ȁ directly in UTF-8 source
  • Set lang="sl" or lang="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 \200 in HTML text nodes
  • Assume all fonts render Latin Extended-B double-grave glyphs

Key Takeaways

1

Three references render Ȁ (no named entity)

&#x200; &#512;
2

For CSS stylesheets, use the escape in the content property

\200
3

Unicode U+0200 — LATIN CAPITAL LETTER A WITH DOUBLE GRAVE

4

Used in Slavic linguistics, tone notation, and phonetic transcription

❓ Frequently Asked Questions

Use &#x200; (hex), &#512; (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.
In Slavic linguistic content (e.g. Slovenian, Croatian), phonetic transcriptions, tone notation, language learning materials, and internationalized web content that requires this diacritic.
HTML code (&#512; or &#x200;) 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.
No. There is no named HTML entity for Ȁ. Use &#512; or &#x200; 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful