HTML Entity for Uppercase A Tilde (Ã)

What You'll Learn
How to display the uppercase A with tilde (Ã) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Portuguese and Brazilian Portuguese, it appears in all-caps words such as MAÇÃ (apple). It is U+00C3 in the Latin-1 Supplement block.
Render it with Ã, Ã, Ã, or CSS escape \00C3. The named entity à is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase A Tilde Entity
U+00C3Latin-1 Supplement
ÃHexadecimal reference
ÃDecimal reference
ÃMost readable option
Name Value
──────────── ──────────
Unicode U+00C3
Hex code Ã
HTML code Ã
Named entity Ã
CSS code \00C3
Meaning Latin capital letter A with tilde
Related U+00E3 = ã (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase A tilde (Ã) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00C3";
}
</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 tilde (Ã) and the named entity à are supported in all modern browsers:
👀 Live Preview
See the uppercase A tilde (Ã) in Portuguese and international contexts:
🧠 How It Works
Hexadecimal Code
à uses the Unicode hexadecimal value C3 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
à uses the decimal Unicode value 195 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
\00C3 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+00C3 sits in Latin-1 Supplement. Lowercase equivalent: U+00E3 (ã). Do not confuse with plain A (U+0041) or  (circumflex).
Use Cases
The uppercase A tilde (Ã) is commonly used in:
All-caps text and headings with correct spelling (e.g. MAÇÃ, proper names in uppercase).
Websites, apps, and documents for Brazilian audiences requiring à in capitalized text.
Multilingual sites and apps targeting Portuguese-speaking regions.
Dictionaries, vocabulary apps, and pronunciation guides for Portuguese.
Academic, editorial, and legal content with Portuguese names and place names.
Product names, brand names, and descriptions for Portuguese markets.
Correct rendering so Portuguese content is indexed and found by users searching for Ã.
💡 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="pt-BR"on Portuguese content - Use fonts that support Latin-1 Supplement characters
- Distinguish à (tilde) from plain
A(U+0041) and  (circumflex)
Don’t
- Substitute plain
Awhen à is required for correct Portuguese spelling - Confuse à (tilde) with  (circumflex) or other accented A variants
- Put CSS escape
\00C3in 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
\00C3Unicode U+00C3 — LATIN CAPITAL LETTER A WITH TILDE
Essential for Portuguese, Brazilian Portuguese, and internationalized web content
Previous: Uppercase A Stroke (Ⱥ) Next: Uppercase A Umlaut
❓ Frequently Asked Questions
à (named), à (hex), à (decimal), or \00C3 in CSS content. All four methods render à correctly.U+00C3 (LATIN CAPITAL LETTER A WITH TILDE). Latin-1 Supplement block. Hex C3, decimal 195. Used in Portuguese, Brazilian Portuguese, and other languages.à or Ã) or the named entity à is used in HTML content. The CSS entity (\00C3) 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
