HTML Entity for Lowercase A Breve (ă)

What You'll Learn
How to display the lowercase a with breve (ă) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0103 in the Latin Extended-A block and is essential for Romanian, Vietnamese romanization, and other languages.
Render it with ă, ă, ă, or CSS escape \103. The named entity ă is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase A Breve Entity
U+0103Latin Extended-A
ăHexadecimal reference
ăDecimal reference
ăMost readable option
Name Value
──────────── ──────────
Unicode U+0103
Hex code ă
HTML code ă
Named entity ă
CSS code \103
Meaning Latin small letter a with breve
Related U+0102 = Ă (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase a breve (ă) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\103";
}
</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 lowercase a breve (ă) and the named entity ă are supported in modern browsers:
👀 Live Preview
See the lowercase a breve (ă) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ă uses the Unicode hexadecimal value 103 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ă uses the decimal Unicode value 259 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
\103 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+0103 sits in Latin Extended-A. Uppercase equivalent: U+0102 (Ă). Do not confuse with plain a (U+0061) or acute á (á).
Use Cases
The lowercase a breve (ă) is commonly used in:
Essential in words like măr, băiat, and că. The breve marks a distinct vowel sound.
Websites and apps serving Romanian-speaking audiences or Vietnamese romanization.
Names of people, cities, and brands that include ă (e.g. Găești).
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 content (e.g. searching for “măr”).
💡 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 á (acute) and plain
a(U+0061)
Don’t
- Substitute plain
awhen ă is required (măr vs mar changes meaning) - Confuse breve ă with circumflex â or acute á
- Put CSS escape
\103in 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
\103Unicode U+0103 — LATIN SMALL LETTER A WITH BREVE
Essential for Romanian, Vietnamese romanization, and i18n content
Previous: Lowercase A Acute (á) Next: Lowercase A Caron
❓ Frequently Asked Questions
ă (named), ă (hex), ă (decimal), or \103 in CSS content. The named entity ă is the most readable for HTML content.U+0103 (LATIN SMALL LETTER A WITH BREVE). Latin Extended-A block. Hex 103, decimal 259. Used in Romanian, Vietnamese romanization, and other languages.ă or ă) or the named entity ă is used in HTML content. The CSS entity (\103) 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
