HTML Entity for Uppercase A Ogonek (Ą)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0104

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

Unicode U+0104

Latin Extended-A

Hex Code Ą

Hexadecimal reference

HTML Code Ą

Decimal reference

Named Entity Ą

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\104";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x104;</p>
<p>Symbol (decimal): &#260;</p>
<p>Symbol (named): &Aogon;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase A ogonek (Ą) and the named entity &Aogon; are supported in modern browsers when UTF-8 is used:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase A ogonek (Ą) in Polish and Lithuanian contexts:

Large glyphĄ
Polish (caps)SĄ (they are)
LithuanianĄ with ogonek
Named entity&Aogon; renders as Ą
Numeric refs&#x104; &#260; &Aogon; \104

🧠 How It Works

1

Hexadecimal Code

&#x104; uses the Unicode hexadecimal value 104 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#260; uses the decimal Unicode value 260 to display the same character. A common method for Latin Extended-A characters.

HTML markup
3

Named Entity

&Aogon; is the standard named entity for Ą—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\104 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ą. Unicode U+0104 sits in Latin Extended-A. Lowercase equivalent: U+0105 (&aogon;). Do not confuse with plain A (U+0041).

Use Cases

The uppercase A ogonek (Ą) is commonly used in:

🇵🇱 Polish

All-caps text, headings, and words like SĄ (they are) where the nasal vowel requires Ą.

🌐 Lithuanian

Used in Lithuanian orthography. Correct rendering is required for i18n content.

📝 Proper names

Names of people, cities, and brands that include Ą must display correctly for accessibility and SEO.

🔤 Education

Language learning apps, dictionaries, and phonetic content teaching Polish and Lithuanian spelling.

📄 Publishing

Legal, academic, and editorial content in Polish or Lithuanian.

🎨 Typography

Headlines, logos, and styled text requiring correct Polish or Lithuanian spelling.

🔍 Search & SEO

Correct rendering so users can find content with proper ogonek spelling in all-caps queries.

💡 Best Practices

Do

  • Use &Aogon; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ą directly in UTF-8 source
  • Set lang="pl" or lang="lt" on relevant content
  • Use fonts that support Latin Extended-A characters
  • Distinguish Ą (ogonek) from plain A (U+0041)

Don’t

  • Substitute plain A when Ą is required for correct spelling
  • Confuse Ą (ogonek) with Ā (macron) or other accented A variants
  • Put CSS escape \104 in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ą; named entity is most readable

&#x104; &#260; &Aogon;
2

For CSS stylesheets, use the escape in the content property

\104
3

Unicode U+0104 — LATIN CAPITAL LETTER A WITH OGONEK

4

Essential for Polish, Lithuanian, and internationalized web content

❓ Frequently Asked Questions

Use &Aogon; (named), &#x104; (hex), &#260; (decimal), or \104 in CSS content. The named entity &Aogon; 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.
When writing Polish, Lithuanian, or other languages that use the ogonek, plus proper names, all-caps text, and internationalized web content.
HTML code (&#260; or &#x104;) or the named entity &Aogon; 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.
Yes. The named HTML entity is &Aogon;. It is part of the standard HTML5 entity set and is well supported. You can also use &#260; or &#x104; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful