HTML Entity for Uppercase A Breve (Ă)

What You'll Learn
How to display the uppercase A with breve (Ă) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0102 in the Latin Extended-A block and is essential for Romanian, Vietnamese romanization, and other languages.
Render it with Ă, Ă, Ă, or CSS escape \102. The named entity Ă is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase A Breve Entity
U+0102Latin Extended-A
ĂHexadecimal reference
ĂDecimal reference
ĂMost readable option
Name Value
──────────── ──────────
Unicode U+0102
Hex code Ă
HTML code Ă
Named entity Ă
CSS code \102
Meaning Latin capital letter A with breve
Related U+0103 = ă (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase A breve (Ă) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\102";
}
</style>
</head>
<body>
<p>Symbol (hex): Ă</p>
<p>Symbol (decimal): Ă</p>
<p>Symbol (named): Ă</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase A breve (Ă) and the named entity Ă are supported in modern browsers:
👀 Live Preview
See the uppercase A breve (Ă) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ă uses the Unicode hexadecimal value 102 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ă uses the decimal Unicode value 258 to display the same character. A common method for Latin Extended-A characters.
Named Entity
Ă is the standard named entity for Ă—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\102 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+0102 sits in Latin Extended-A. Lowercase equivalent: U+0103 (ă). Do not confuse with plain A (U+0041), acute Á (Á), or circumflex  (Â).
Use Cases
The uppercase A breve (Ă) is commonly used in:
Part of the Romanian alphabet; appears in proper names and words when capitalized.
Websites and apps serving Romanian-speaking audiences or Vietnamese romanization.
Names of people, cities, and brands that include Ă at the start or within a word.
Phonetic transcriptions, language learning apps, and dictionaries.
Legal, academic, and editorial content in Romanian and related languages.
Headlines, logos, and styled text requiring correct accented spelling.
Correct rendering so users can find Romanian and Vietnamese content with proper diacritics.
💡 Best Practices
Do
- Use
Ăin HTML when possible for readability - Serve pages as UTF-8; you can also type Ă directly in UTF-8 source
- Set
lang="ro"for Romanian content so screen readers pronounce Ă correctly - Use fonts that support Latin Extended-A characters
- Distinguish Ă (breve) from  (circumflex) and Á (acute)
Don’t
- Substitute plain
Awhen Ă is required for correct spelling - Confuse breve Ă with circumflex  or acute Á
- Put CSS escape
\102in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Ă; named entity is most readable
Ă Ă ĂFor CSS stylesheets, use the escape in the content property
\102Unicode U+0102 — LATIN CAPITAL LETTER A WITH BREVE
Essential for Romanian, Vietnamese romanization, and i18n content
Previous: Uppercase A Acute (Á) Next: Uppercase A Caron
❓ Frequently Asked Questions
Ă (named), Ă (hex), Ă (decimal), or \102 in CSS content. The named entity Ă is the most readable for HTML content.U+0102 (LATIN CAPITAL LETTER A WITH BREVE). Latin Extended-A block. Hex 102, decimal 258. Used in Romanian, Vietnamese romanization, and other languages.Ă or Ă) or the named entity Ă is used in HTML content. The CSS entity (\102) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ă but in different contexts.Ă. 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
