HTML Entity for Uppercase U Ogonek (Ų)

What You'll Learn
How to display the uppercase 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Ų, ŽMONŲ) and appears alongside other ogonek letters such as Ą and Ę. It is U+0172 in the Latin Extended-A block.
Render it with Ų, Ų, Ų, or CSS escape \0172. The named entity Ų is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase U Ogonek Entity
U+0172Latin Extended-A
ŲHexadecimal reference
ŲDecimal reference
ŲMost readable option
Name Value
──────────── ──────────
Unicode U+0172
Hex code Ų
HTML code Ų
Named entity Ų
CSS code \0172
Meaning Latin capital letter U with ogonek
Related U+0173 = ų (ų, lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase U ogonek (Ų) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0172";
}
</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 U ogonek (Ų) and the named entity Ų are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase U ogonek (Ų) in Lithuanian and content contexts:
ų)U (U+0055) | Ū (u macron) | Ʉ (u bar)🧠 How It Works
Hexadecimal Code
Ų uses the Unicode hexadecimal value 0172 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ų uses the decimal Unicode value 370 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
\0172 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+0172 sits in Latin Extended-A. Lowercase equivalent: U+0173 (ų). Do not confuse with plain U (U+0055) or Ū (macron).
Use Cases
The uppercase U ogonek (Ų) is commonly used in:
Capital form in Lithuanian orthography (SŪNŲ, GALŲ, ŽMONŲ) for headlines, signage, and localized UI.
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+0055) and Ū (macron)
Don’t
- Confuse Ų with plain
Uor Ū (Ū) when the ogonek is required - Use the old incorrect CSS escape
\00172—the correct value is\0172 - Put CSS escape
\0172in HTML text nodes - Substitute plain
Uplus a combining hook when the precomposed letter is required - Double-encode numeric references in dynamically generated HTML
Key Takeaways
Use the named entity for readability in HTML source
ŲOr use hex/decimal references when escaping is needed
Ų ŲFor CSS stylesheets, use the escape in the content property
\0172Unicode U+0172 — LATIN CAPITAL LETTER U WITH OGONEK
Previous: Uppercase U Middle Bar (Ʉ) Next: Uppercase U Ring Above (Ů)
❓ Frequently Asked Questions
Ų (named), Ų (hex), Ų (decimal), or \0172 in CSS content. All produce Ų. In UTF-8 you can also type Ų directly.U+0172 (LATIN CAPITAL LETTER U WITH OGONEK). Latin Extended-A block. Hex 0172, decimal 370. Used primarily in Lithuanian. Lowercase form is U+0173 (ų).Ų. You can also use numeric codes Ų or Ų, or the CSS entity \0172. Do not confuse with plain U (U+0055) or Ū (u macron).Ų or Ų) or the named entity Ų is used in HTML content; CSS entity \0172 is used in stylesheets in the content property of pseudo-elements. Both produce Ų.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
