HTML Entity for Lowercase U Ogonek (ų)

What You'll Learn
How to display the lowercase u with ogonek (ų) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The ogonek (hook) is used primarily in Lithuanian (e.g. sūnų, galų) and appears alongside other ogonek letters such as ą and ę. It is U+0173 in the Latin Extended-A block.
Render it with ų, ų, ų, or CSS escape \0173. The named entity ų is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase U Ogonek Entity
U+0173Latin Extended-A
ųHexadecimal reference
ųDecimal reference
ųMost readable option
Name Value
──────────── ──────────
Unicode U+0173
Hex code ų
HTML code ų
Named entity ų
CSS code \0173
Meaning Latin small letter u with ogonek
Related U+0172 = Ų (Ų)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase u ogonek (ų) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0173";
}
</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 lowercase u ogonek (ų) and the named entity ų are supported in modern browsers:
👀 Live Preview
See the lowercase u ogonek (ų) in Lithuanian and content contexts:
u (U+0075) | ū (u macron) | ʉ (u bar)🧠 How It Works
Hexadecimal Code
ų uses the Unicode hexadecimal value 0173 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ų uses the decimal Unicode value 371 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
\0173 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+0173 sits in Latin Extended-A. Uppercase equivalent: U+0172 (Ų). Do not confuse with plain u (U+0075) or ū (macron).
Use Cases
The lowercase u ogonek (ų) is commonly used in:
Essential in words like sūnų (of sons), galų (of ends), žmonų (of women/wives). One of Lithuania’s standard alphabet letters.
Names of people, cities, and brands that include ų must display correctly for accessibility and SEO.
Part of the ogonek letter set alongside ą (ą), ę (ę), and į (į) in Baltic languages.
Language learning apps, dictionaries, and phonetic content teaching Lithuanian pronunciation and spelling.
Legal, academic, and editorial content in Lithuanian requiring correct orthography.
Headlines, logos, and styled text in Lithuanian requiring correct spelling.
When building HTML from i18n data, using ų or ų guarantees correct output.
💡 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="lt"on Lithuanian content for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish ų (ogonek) from plain
u(U+0075) and ū (macron)
Don’t
- Substitute plain
uwhen ų is required for correct Lithuanian spelling - Confuse ų (ogonek) with ū (macron) or ʉ (middle bar)
- Use the old incorrect CSS escape
\00173—the correct value is\0173 - Put CSS escape
\0173in HTML text nodes - 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
\0173Unicode U+0173 — LATIN SMALL LETTER U WITH OGONEK
Essential for Lithuanian; uppercase is Ų (U+0172, Ų)
Previous: Lowercase U Middle Bar (ʉ) Next: Lowercase U Ring Above (ů)
❓ Frequently Asked Questions
ų (named), ų (hex), ų (decimal), or \0173 in CSS content. The named entity ų is the most readable for HTML content.U+0173 (LATIN SMALL LETTER U WITH OGONEK). Latin Extended-A block. Hex 0173, decimal 371. Used primarily in Lithuanian. Uppercase form is U+0172 (Ų) with named entity Ų.ų or ų) or the named entity ų is used in HTML content. The CSS entity (\0173) 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
