HTML Entity for Uppercase A Inverted Breve (Ȃ)

What You'll Learn
How to display the uppercase A with inverted breve (Ȃ) in HTML using hexadecimal, decimal, and CSS escape methods. The inverted breve is a diacritical mark used in Slavic linguistics and phonetic notation. This character is U+0202 in the Latin Extended-B block.
Render it with Ȃ, Ȃ, or CSS escape \202. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase A Inverted Breve Entity
U+0202Latin Extended-B
ȂHexadecimal reference
ȂDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0202
Hex code Ȃ
HTML code Ȃ
Named entity (none)
CSS code \202
Meaning Latin capital letter A with inverted breve
Related U+0203 = lowercase equivalent (ȃ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase A inverted breve (Ȃ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\202";
}
</style>
</head>
<body>
<p>Symbol (hex): Ȃ</p>
<p>Symbol (decimal): Ȃ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase A inverted breve (Ȃ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase A inverted breve (Ȃ) and its references:
AA🧠 How It Works
Hexadecimal Code
Ȃ uses the Unicode hexadecimal value 202 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ȃ uses the decimal Unicode value 514 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\202 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+0202 sits in Latin Extended-B. Lowercase equivalent: U+0203 (ȃ). There is no named HTML entity. Do not confuse with Ă (breve, U+0102).
Use Cases
The uppercase A inverted breve (Ȃ) is commonly used in:
Slavic dialectology and phonetic notation for tone, stress, or vowel quality.
Websites and apps for Slavic languages or linguistic research requiring Ȃ.
Dictionaries and learning resources showing correct tone with inverted-breve marks.
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 inverted breve 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
langattributes (e.g.lang="sl",lang="hr") for Slavic content - Use fonts that support Latin Extended-B diacritics
- Distinguish Ȃ (inverted breve) from Ă (breve) and plain
A
Don’t
- Assume a named entity exists—there is none for Ȃ
- Substitute Ă (breve) when Ȃ (inverted breve) is required
- Put CSS escape
\202in HTML text nodes - Assume all fonts render Latin Extended-B inverted-breve 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
\202Unicode U+0202 — LATIN CAPITAL LETTER A WITH INVERTED BREVE
Used in Slavic linguistics, phonetic transcription, and tone notation
Previous: Uppercase A Grave (À) Next: Uppercase A Macron
❓ Frequently Asked Questions
Ȃ (hex), Ȃ (decimal), or \202 in CSS content. There is no named HTML entity for this character.U+0202 (LATIN CAPITAL LETTER A WITH INVERTED BREVE). Latin Extended-B block. Hex 202, decimal 514. Used in Slavic linguistics for tone or stress notation.Ȃ or Ȃ) is used in HTML content. The CSS entity (\202) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ȃ but in different contexts.Ȃ or Ȃ in HTML, or \202 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
