HTML Entity for Lowercase A Caron (ǎ)

What You'll Learn
How to display the lowercase 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 (third tone), Slavic languages, and linguistics. This character is U+01CE in the Latin Extended-B block.
Render it with &acaron;, ǎ, ǎ, or CSS escape \1CE. The named entity &acaron; is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase A Caron Entity
U+01CELatin Extended-B
ǎHexadecimal reference
ǎDecimal reference
&acaron;Most readable option
Name Value
──────────── ──────────
Unicode U+01CE
Hex code ǎ
HTML code ǎ
Named entity &acaron;
CSS code \1CE
Meaning Latin small letter a with caron
Related U+01CD = &Acaron; (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase a caron (ǎ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1CE";
}
</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 lowercase a caron (ǎ) and the named entity &acaron; are supported in modern browsers:
👀 Live Preview
See the lowercase a caron (ǎ) in Pinyin and language contexts:
🧠 How It Works
Hexadecimal Code
ǎ uses the Unicode hexadecimal value 1CE to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǎ uses the decimal Unicode value 462 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
\1CE 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+01CE sits in Latin Extended-B. Uppercase equivalent: U+01CD (&Acaron;). Do not confuse with breve ă or acute á.
Use Cases
The lowercase a caron (ǎ) is commonly used in:
Essential for the third tone in Mandarin Pinyin (e.g. mǎ for third-tone ma).
Chinese language learning sites, Slavic or Baltic language content.
Phonetic transcriptions and linguistic descriptions using the caron (háček).
Chinese learning apps, dictionaries, and textbooks teaching Pinyin tones.
Academic, educational, or editorial content in Pinyin or Slavic languages.
Headlines and styled text in Pinyin or Slavic contexts.
Correct rendering so users can find Pinyin or Slavic content.
💡 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
lang="zh-Latn"orlang="zh"for Pinyin content - Use fonts that support Latin Extended-B (important for Pinyin tone marks)
- Distinguish caron ǎ from breve ă, acute á, and plain
a
Don’t
- Use plain
awhen ǎ is required for correct Pinyin tone marking - Confuse caron (háček) with breve, acute, or circumflex diacritics
- Put CSS escape
\1CEin HTML text nodes - Assume all fonts render Latin Extended-B glyphs for Pinyin
- 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
\1CEUnicode U+01CE — LATIN SMALL LETTER A WITH CARON
Essential for Pinyin third tone, Slavic languages, and linguistics
Previous: Lowercase A Breve (ă) Next: Lowercase A Circumflex
❓ Frequently Asked Questions
&acaron; (named), ǎ (hex), ǎ (decimal), or \1CE in CSS content. The named entity &acaron; is the most readable for HTML content.U+01CE (LATIN SMALL LETTER A WITH CARON). Latin Extended-B block. Hex 1CE, decimal 462. Used in Pinyin, Slavic languages, and linguistics.ǎ or ǎ) or the named entity &acaron; is used in HTML content. The CSS entity (\1CE) 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
