HTML Entity for Combining Ogonek (̨)

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

What You'll Learn

How to display the Combining Ogonek (̨) in HTML and CSS. This character is U+0328 in the Combining Diacritical Marks block (U+0300–U+036F)—a nonspacing hook-shaped mark that attaches below the preceding base letter. It is used in Polish (ą, ę), Lithuanian (ą, ę, ų, į), and other orthographies.

There is no named HTML entity for U+0328 itself. Use ̨ or ̨ in markup, or \328 in stylesheet content. Place the mark after the base letter (e.g. ą renders as ą). For common letters, prefer precomposed characters and named entities such as ą (ą) and ę (ę).

⚡ Quick Reference — Combining Ogonek

Unicode U+0328

Combining Diacritical Marks

Hex Code ̨

Hexadecimal reference

HTML Code ̨

Decimal reference

Named Entity

None for U+0328 (see ą, ę)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0328
Hex code       ̨
HTML code      ̨
Named entity   — (precomposed: ą, ę, ų)
CSS code       \328
Position       Below base character
Block          Combining Diacritical Marks (U+0300–U+036F)
Examples       ą = ą   ę = ę   ų = ų
1

Complete HTML Example

A simple example showing U+0328 using hexadecimal and decimal references, plus a CSS content escape. There is no named HTML entity for the combining ogonek:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\328";
  }
 </style>
</head>
<body>
<p>Ogonek (hex): &#x0328;</p>
<p>Ogonek (decimal): &#808;</p>
<p id="point">Ogonek (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Combining Ogonek is supported in all modern browsers when paired with a base character:

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

👀 Live Preview

See the Combining Ogonek with Polish and Lithuanian letters:

Polish combining ą   ę
Precomposed ą   ę   ų   į
Polish words wąska, Żą   (ę)   kręci
Standalone mark ̨
Monospace refs &#x0328; &#808; \328

🧠 How It Works

1

Hexadecimal Code

&#x0328; references code point U+0328 using hex digits 0328. Place it immediately after a base letter (e.g. a&#x0328;).

HTML markup
2

Decimal HTML Code

&#808; is the decimal equivalent (808) for the same Combining Ogonek character.

HTML markup
3

CSS Entity

\328 is the CSS escape for U+0328, used in the content property of ::before or ::after.

CSS stylesheet
=

Combining result

The mark attaches below the preceding base character to form letters like ą, ę, and ų. No named entity exists for U+0328; use &aogon;, &eogon;, or &uogon; for precomposed letters.

Use Cases

The Combining Ogonek (̨) commonly appears in:

🇵🇱 Polish

Letters ą and ę in words like wąska, Żą, and kręci.

🇹🇻 Lithuanian

Characters ą, ę, ų, and į in native orthography.

🌐 Internationalization

Websites and apps targeting Polish or Lithuanian audiences.

🔤 Linguistic notation

Phonetic transcription, dictionaries, and academic language resources.

📚 Language learning

Vocabulary lists, pronunciation guides, and grammar exercises.

📧 Forms & input

Name fields, addresses, and user input with Polish or Lithuanian characters.

♿ Accessibility

Use proper lang attributes so screen readers pronounce text correctly.

💡 Best Practices

Do

  • Place &#x0328; or &#808; immediately after the base letter
  • Prefer precomposed letters and named entities (&aogon;, &eogon;) when available
  • Set lang="pl" or lang="lt" on Polish or Lithuanian content
  • Use fonts with Central European glyph support (Noto Serif, Georgia)
  • Declare <meta charset="utf-8"> for reliable combining

Don’t

  • Put the combining mark before the base character
  • Use padded Unicode notation like U+00328—the correct value is U+0328
  • Substitute plain a or e when ą or ę is required
  • Put CSS escape \328 inside HTML text nodes
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML references for the combining mark

&#x0328; &#808;
2

For CSS stylesheets, use the escape in the content property

\328
3

U+0328 Combining Ogonek — hook below base letters

4

Forms Polish/Lithuanian letters: ą, ę, ų, į

5

Previous: Oe Ligature (œ)   Next: Ohm Sign (Ω)

❓ Frequently Asked Questions

Use &#x0328; (hex), &#808; (decimal), or \328 in CSS content. Place the mark right after the base letter (e.g. a&#x0328; for ą). There is no named HTML entity for U+0328.
U+0328 (COMBINING OGONEK). Combining Diacritical Marks block (U+0300–U+036F). Hex 0328, decimal 808. Hook-shaped mark placed below the base character.
For Polish and Lithuanian text, linguistic notation, and when you need to build ogonek letters from a base character plus combining mark. Prefer precomposed letters (ą, ę) and named entities when possible.
HTML numeric references (&#808; or &#x0328;) go directly in markup after the base letter. The CSS escape \328 is used in stylesheets, typically in the content property of pseudo-elements.
No for U+0328 itself. Precomposed letters have named entities: &aogon; (ą), &eogon; (ę), &uogon; (ų), and &iogon; (į).

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, diacritics, 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