HTML Entity for Uppercase A (A)

What You'll Learn
How to display the uppercase letter A in HTML using entity methods. The letter A is the first letter of the Latin alphabet (U+0041) and is part of the Basic Latin block. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.
This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &A; for this letter.
⚡ Quick Reference — Uppercase A Entity
U+0041Basic Latin (ASCII)
AHexadecimal reference
ADecimal reference
AType directly (no named entity)
Name Value
──────────── ──────────
Unicode U+0041
Hex code A
HTML code A
Named entity (none — use A directly)
CSS code \41
Meaning Latin capital letter A
Related U+0061 = a (lowercase)
Block Basic Latin (U+0000–U+007F)Complete HTML Example
A simple example showing the uppercase letter A using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\41";
}
</style>
</head>
<body>
<p>Symbol (hex): A</p>
<p>Symbol (decimal): A</p>
<p>Symbol (direct): A</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase letter A (U+0041) is universally supported in all browsers and platforms as part of Basic Latin:
👀 Live Preview
See the uppercase letter A in common text contexts:
🧠 How It Works
Hexadecimal Code
A uses the Unicode hexadecimal value 41 to display the letter. The x prefix indicates hexadecimal format.
Decimal HTML Code
A uses the decimal Unicode value 65 to display the same character. This is the ASCII/Unicode decimal for A.
Direct Character
Type A directly in HTML. There is no named entity like &A;; the character itself is the standard approach in body text.
CSS Entity
\41 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: A. Unicode U+0041 sits in Basic Latin. The lowercase form is U+0061 (a). In normal text, typing A is preferred.
Use Cases
The uppercase letter A (or its entity forms) is commonly used in:
Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.
Use in ARIA labels, alt text, placeholders, and attribute values; numeric entities help when escaping is needed.
Reference in font specs, CSS content, or generated text via CSS entities.
Teaching the alphabet, phonics, or character encoding; entity codes clarify the exact character.
When building HTML or strings programmatically, numeric entities ensure correct output.
Part of Basic Latin used across languages; entities can help in legacy encoding contexts.
CSS content or list-style may use the character via entity for styling.
💡 Best Practices
Do
- Type
Adirectly in body content; use entities only when necessary - Serve pages as UTF-8 so Basic Latin characters render without entities
- Use numeric references (
AorA) when escaping is required - Use
\41in CSScontentwhen generating the letter via pseudo-elements - Remember uppercase A is U+0041 and lowercase a is U+0061 when case matters
Don’t
- Overuse numeric entities for
Ain normal readable text - Expect a named HTML entity like
&A;—none exists for this letter - Put CSS escape
\41in HTML text nodes - Confuse
A(U+0041) with accented variants likeÁ(Á) - Mix entity styles randomly in one file without reason
Key Takeaways
Type A directly, or use hex/decimal references
A AFor CSS stylesheets, use the escape in the content property
\41Unicode U+0041 — LATIN CAPITAL LETTER A
First letter of the Latin alphabet (Basic Latin block)
Previous: Uppercase 5 Tone (Ƽ) Next: Uppercase A Above Dot
❓ Frequently Asked Questions
A directly, or use A (hex), A (decimal), or \41 in CSS content. For most content, typing A is standard; use numeric or CSS entities when escaping or generating via CSS.U+0041 (LATIN CAPITAL LETTER A). Basic Latin block. Hex 41, decimal 65. It is the first letter of the Latin alphabet.::before/::after, ensuring encoding in legacy systems, or building strings programmatically. In normal body text, typing A is preferred.A or A) is used in HTML content or attributes. The CSS entity (\41) is used in CSS, e.g. in the content property of pseudo-elements. Both produce A but in different contexts.&A; for the letter A. Use the character A directly, or numeric references A (decimal) or A (hex). Named entities are mainly for characters with special meaning (e.g. <, &).Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
