HTML Entity for Uppercase A Caron (Ǎ)

What You'll Learn
How to display the uppercase A with caron (Ǎ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The caron (háček) is a diacritical mark used in Pinyin, Slavic languages, and linguistics. This character is U+01CD in the Latin Extended-B block.
Render it with &Acaron;, Ǎ, Ǎ, or CSS escape \1CD. The named entity &Acaron; is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase A Caron Entity
U+01CDLatin Extended-B
ǍHexadecimal reference
ǍDecimal reference
&Acaron;Most readable option
Name Value
──────────── ──────────
Unicode U+01CD
Hex code Ǎ
HTML code Ǎ
Named entity &Acaron;
CSS code \1CD
Meaning Latin capital letter A with caron
Related U+01CE = &acaron; (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase A caron (Ǎ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1CD";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǎ</p>
<p>Symbol (decimal): Ǎ</p>
<p>Symbol (named): &Acaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase A caron (Ǎ) and the named entity &Acaron; are supported in modern browsers:
👀 Live Preview
See the uppercase A caron (Ǎ) in language and content contexts:
A🧠 How It Works
Hexadecimal Code
Ǎ uses the Unicode hexadecimal value 1CD to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǎ uses the decimal Unicode value 461 to display the same character. A common method for Latin Extended-B characters.
Named Entity
&Acaron; is the standard named entity for Ǎ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\1CD 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+01CD sits in Latin Extended-B. Lowercase equivalent: U+01CE (&acaron;). Do not confuse with breve Ă or acute Á.
Use Cases
The uppercase A caron (Ǎ) is commonly used in:
Central European languages that use the caron (háček) diacritic on Latin letters.
Uppercase Pinyin contexts where the third-tone caron mark appears on A.
Phonetic transcriptions and linguistic descriptions using the caron (háček).
Websites serving Slavic-language audiences or language learning resources.
Academic, educational, or editorial content in Slavic languages or Pinyin.
Headlines and styled text in Slavic or Pinyin contexts.
Correct rendering so users can find Slavic or Pinyin content with proper diacritics.
💡 Best Practices
Do
- Use
&Acaron;in HTML when possible for readability - Serve pages as UTF-8; you can also type Ǎ directly in UTF-8 source
- Set appropriate
langattributes for Slavic or Pinyin content - Use fonts that support Latin Extended-B diacritics
- Distinguish caron Ǎ from breve Ă, acute Á, and plain
A
Don’t
- Substitute plain
Awhen Ǎ is required for correct spelling - Confuse caron (háček) with breve, acute, or circumflex diacritics
- Put CSS escape
\1CDin HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Ǎ; named entity is most readable
Ǎ Ǎ &Acaron;For CSS stylesheets, use the escape in the content property
\1CDUnicode U+01CD — LATIN CAPITAL LETTER A WITH CARON
Used in Pinyin, Slavic languages, and linguistics
Previous: Uppercase A Breve (Ă) Next: Uppercase A Caron Dot Macron
❓ Frequently Asked Questions
&Acaron; (named), Ǎ (hex), Ǎ (decimal), or \1CD in CSS content. The named entity &Acaron; is the most readable for HTML content.U+01CD (LATIN CAPITAL LETTER A WITH CARON). Latin Extended-B block. Hex 1CD, decimal 461. Used in Pinyin, Slavic languages, and linguistics.Ǎ or Ǎ) or the named entity &Acaron; is used in HTML content. The CSS entity (\1CD) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǎ but in different contexts.&Acaron;. 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
