HTML Entity for Uppercase A Ogonek (Ą)

What You'll Learn
How to display the uppercase A with ogonek (Ą) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The ogonek (hook) is used in Polish, Lithuanian, and other languages. It is U+0104 in the Latin Extended-A block.
Render it with Ą, Ą, Ą, or CSS escape \104. The named entity Ą is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase A Ogonek Entity
U+0104Latin Extended-A
ĄHexadecimal reference
ĄDecimal reference
ĄMost readable option
Name Value
──────────── ──────────
Unicode U+0104
Hex code Ą
HTML code Ą
Named entity Ą
CSS code \104
Meaning Latin capital letter A with ogonek
Related U+0105 = ą (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase A ogonek (Ą) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\104";
}
</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 ogonek (Ą) and the named entity Ą are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase A ogonek (Ą) in Polish and Lithuanian contexts:
🧠 How It Works
Hexadecimal Code
Ą uses the Unicode hexadecimal value 104 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ą uses the decimal Unicode value 260 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
\104 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+0104 sits in Latin Extended-A. Lowercase equivalent: U+0105 (ą). Do not confuse with plain A (U+0041).
Use Cases
The uppercase A ogonek (Ą) is commonly used in:
All-caps text, headings, and words like SĄ (they are) where the nasal vowel requires Ą.
Used in Lithuanian orthography. Correct rendering is required for i18n content.
Names of people, cities, and brands that include Ą must display correctly for accessibility and SEO.
Language learning apps, dictionaries, and phonetic content teaching Polish and Lithuanian spelling.
Legal, academic, and editorial content in Polish or Lithuanian.
Headlines, logos, and styled text requiring correct Polish or Lithuanian spelling.
Correct rendering so users can find content with proper ogonek spelling in all-caps queries.
💡 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="pl"orlang="lt"on relevant content - Use fonts that support Latin Extended-A characters
- Distinguish Ą (ogonek) from plain
A(U+0041)
Don’t
- Substitute plain
Awhen Ą is required for correct spelling - Confuse Ą (ogonek) with Ā (macron) or other accented A variants
- Put CSS escape
\104in 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
\104Unicode U+0104 — LATIN CAPITAL LETTER A WITH OGONEK
Essential for Polish, Lithuanian, and internationalized web content
Previous: Uppercase A Macron (Ā) Next: Uppercase A Ring
❓ Frequently Asked Questions
Ą (named), Ą (hex), Ą (decimal), or \104 in CSS content. The named entity Ą is the most readable for HTML content.U+0104 (LATIN CAPITAL LETTER A WITH OGONEK). Latin Extended-A block. Hex 104, decimal 260. Used in Polish, Lithuanian, and other languages.Ą or Ą) or the named entity Ą is used in HTML content. The CSS entity (\104) 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
