HTML Entity for Lowercase A Tilde (ã)

What You'll Learn
How to display the lowercase a with tilde (ã) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Portuguese (including Brazilian Portuguese), Vietnamese, and other languages, it appears in common words such as São Paulo and maçã. It is U+00E3 in the Latin-1 Supplement block.
Render it with ã, ã, ã, or CSS escape \00E3. The named entity ã is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase A Tilde Entity
U+00E3Latin-1 Supplement
ãHexadecimal reference
ãDecimal reference
ãMost readable option
Name Value
──────────── ──────────
Unicode U+00E3
Hex code ã
HTML code ã
Named entity ã
CSS code \00E3
Meaning Latin small letter a with tilde
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase a tilde (ã) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00E3";
}
</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 tilde (ã) and the named entity ã are supported in all modern browsers:
👀 Live Preview
See the lowercase a tilde (ã) in Portuguese and Vietnamese contexts:
a (U+0061)🧠 How It Works
Hexadecimal Code
ã uses the Unicode hexadecimal value E3 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ã uses the decimal Unicode value 227 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ã is the standard named entity for ã—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\00E3 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+00E3 sits in Latin-1 Supplement. In Portuguese and Vietnamese, ã is a distinct character—do not confuse with plain a (U+0061).
Use Cases
The lowercase a tilde (ã) is commonly used in:
Correct spelling of Portuguese and Brazilian Portuguese words (e.g. São Paulo, maçã, não, irmã).
Vietnamese text and language content that uses the a-with-tilde character.
Vocabulary, pronunciation guides, and dictionary entries for Portuguese and Vietnamese.
Websites and apps targeting Portuguese-speaking or Vietnamese audiences.
Academic papers, books, and editorial content with Portuguese or Vietnamese names and terminology.
Correct rendering so users can find content searching for words like “São Paulo” or “maçã”.
Name fields, addresses, and user input that may contain Portuguese or Vietnamese characters.
💡 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="pt"orlang="vi"on Portuguese or Vietnamese content - Use fonts that support Latin-1 Supplement characters
- Distinguish ã (tilde) from plain
a(U+0061)
Don’t
- Substitute plain
awhen ã is required for correct spelling - Confuse ã (tilde) with á (acute) or other accented a variants
- Put CSS escape
\00E3in HTML text nodes - Assume all fonts render Latin-1 glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Four references render ã; named entity is most readable
ã ã ãFor CSS stylesheets, use the escape in the content property
\00E3Unicode U+00E3 — LATIN SMALL LETTER A WITH TILDE
Essential for Portuguese, Vietnamese, and internationalized web content
Previous: Lowercase A Ring Above Acute (ǻ) Next: Lowercase A Umlaut
❓ Frequently Asked Questions
ã (named), ã (hex), ã (decimal), or \00E3 in CSS content. All four methods render ã correctly.U+00E3 (LATIN SMALL LETTER A WITH TILDE). Latin-1 Supplement block. Hex E3, decimal 227. Used in Portuguese, Vietnamese, and other languages.ã or ã) or the named entity ã is used in HTML content. The CSS entity (\00E3) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ã but in different contexts.ã is easier to read and maintain in hand-written HTML. Numeric codes (ã or ã) are useful when generating HTML programmatically. All produce the same character ã.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
