HTML Entity for Lowercase U Ogonek (ų)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+0173

What Is the Lowercase U Ogonek Entity?

Lowercase u with ogonek (ų) is the Latin Extended-A character at Unicode U+0173 (LATIN SMALL LETTER U WITH OGONEK). A small hook (ogonek) sits below the letter. Essential in Lithuanian orthography. HTML5 defines the named entity ų.

Remember
Character     ų
Unicode       U+0173
Named entity  ų
Hex entity    ų
Decimal       ų
CSS escape    \0173

All of these produce the same glyph: ų. Prefer ų or a pasted ų in UTF-8 pages; use numeric or CSS forms when you need them.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterųHTML text (UTF-8 default)
Named entityųHTML markup (readable choice)
Hex entityųHTML markup
Decimal entityųHTML markup
CSS escape\0173Stylesheet content

When to Use Which

SituationUse
Lithuanian / UTF-8 textType or paste ų
Readable entity in HTML sourceų
Numeric entity requiredų or ų
Generated text via ::before / ::aftercontent: "\0173"
ą (a ogonek) insteadDifferent base letter — see Related Topics

Live Preview

Lowercase u with ogonek rendered in common contexts.

Lithuanian sūnų, žmonų
Large glyph ų
Case pair Ų ų
With entities Named: ų | Hex: ų | Decimal: ų
Not the same u (U+0075) · ą (ą)

Complete HTML Example

One page that shows lowercase u with ogonek with named, hex, decimal, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + CSS

Four ways to produce ų in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase U Ogonek (ų) in HTML</title>
  <style>
    #point::after {
      content: "\0173";
    }
  </style>
</head>
<body>
  <p>U Ogonek using Named Entity: &uogon;</p>
  <p>U Ogonek using Hex Code: &#x0173;</p>
  <p>U Ogonek using HTML Code: &#371;</p>
  <p id="point">U Ogonek using CSS Entity: </p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &uogon; is the HTML5 named entity for U+0173. Clearest form in HTML source.

2. Hex: U+0173 → &#x0173; in HTML. Same glyph as named.

3. Decimal: same code point as 371 → &#371;. Same result.

4. CSS: use \0173 in content (not an HTML entity). #point::after appends that ų after the paragraph text.

Pitfalls & Tips

Common mistakes when working with the u ogonek entity.

Named

Prefer &uogon;

HTML5 defines a named entity for this letter — use it for readable HTML.

CSS vs HTML

Do not mix escapes

\0173 belongs in CSS. &uogon; / &#x0173; / &#371; belong in HTML.

Look-alikes

Not u or ą

Plain u is U+0075; a ogonek ą is U+0105. Same mark, different base letter.

Case

ų vs Ų

Uppercase is U+0172 (&Uogon;) — a different code point from U+0173.

Semicolon

End references

Always finish with ; — write &uogon;, not &uogon.

UTF-8

Declare charset

If you paste ų directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Lowercase u with ogonek (U+0173) and its entity forms (&uogon;, &#x0173;, &#371;, CSS \\0173) are supported in all mainstream browsers.

✓ Universal support

Lowercase U Ogonek (&#x0173;)

Use &uogon;, paste ų, or encode with hex, decimal, or CSS escape — same glyph everywhere.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0173 / entities Full support

Bottom line: Prefer &uogon; or a pasted ų in UTF-8 text. Use &#x0173; / &#371; when a numeric form is required, and \\0173 only inside CSS content.

Key Takeaways

  • Unicode: u with ogonek is U+0173 (decimal 371), Latin Extended-A.
  • HTML: prefer &uogon;, or use &#x0173; / &#371;.
  • CSS: use \0173 inside content for generated text.
  • Use: Lithuanian ų — not the same as plain u or ą.

One line: U+0173 → &uogon;, or &#x0173; / &#371; / CSS \0173.

Frequently Asked Questions

Use &uogon; (named), &#x0173; (hex), &#371; (decimal), or the CSS escape \0173 in the content property. All render ų. In UTF-8 files you can also type or paste ų directly.
U+0173 (LATIN SMALL LETTER U WITH OGONEK). Hex 0173, decimal 371. It belongs to Latin Extended-A and is used in Lithuanian orthography.
Yes. HTML5 defines &uogon; for this character. You can also use numeric references &#371; or &#x0173;.
Use it for Lithuanian text, linguistic examples, CSS-generated content, or when encoding must be explicit. Prefer &uogon; when you want a readable named form in HTML source.
HTML entities (&uogon;, &#371;, or &#x0173;) go in markup. The CSS escape \0173 is used in stylesheets (usually in the content property of ::before/::after). Both render ų.
Plain u is U+0075. ą (U+0105, &aogon;) is a with ogonek. ų (U+0173) is u with the same hook-like mark below — a different base letter. Do not substitute one for another.

Did you know?

Lowercase u with ogonek (ų) is Unicode U+0173 (decimal 371) in Latin Extended-A. HTML5 defines the named entity &uogon; — also usable as &#x0173; or &#371;. Essential in Lithuanian (sūnų, žmonų).

Next: Lowercase U Ring Above

Learn the HTML entity for u with ring above — the next letter in this entity sequence.

Lowercase U Ring Above tutorial →

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