HTML Entity for Uppercase U Ring Above (Ů)

What You'll Learn
How to display the uppercase U with ring above (Ů) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is used primarily in Czech to represent the long u sound (e.g. KŮŇ, DŮM). It is U+016E (LATIN CAPITAL LETTER U WITH RING ABOVE) in the Latin Extended-A block.
Render it with Ů, Ů, Ů, or CSS escape \016E. The named entity Ů is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase U Ring Above Entity
U+016ELatin Extended-A
ŮHexadecimal reference
ŮDecimal reference
ŮMost readable option
Name Value
──────────── ──────────
Unicode U+016E
Hex code Ů
HTML code Ů
Named entity Ů
CSS code \016E
Meaning Latin capital letter U with ring above
Related U+016F = ů (ů, lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase U ring above (Ů) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\016E";
}
</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 ring above (Ů) and the named entity Ů are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase U ring above (Ů) in Czech and content contexts:
ů)U (U+0055) | Ú (u acute) | Ū (u macron) | Å (Å)🧠 How It Works
Hexadecimal Code
Ů uses the Unicode hexadecimal value 016E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ů uses the decimal Unicode value 366 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
\016E 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+016E sits in Latin Extended-A. Lowercase equivalent: U+016F (ů). Do not confuse with plain U (U+0055) or Å (A with ring).
Use Cases
The uppercase U ring above (Ů) is commonly used in:
Capital form in Czech orthography (KŮŇ, DŮM) for headlines, signage, and localized UI. Represents the Czech long u sound.
Czech place names, surnames, and brands that include Ů must display correctly for accessibility and SEO.
Czech-language websites, forms, and CMS content requiring correct orthography.
Language learning apps, dictionaries, and pronunciation guides teaching Czech spelling.
Legal, academic, and editorial content in Czech requiring the ring-above U letter.
Headlines, logos, and styled text in Czech 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="cs"on Czech content for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish Ů (ring) from plain
U(U+0055) and Ú (acute)
Don’t
- Confuse Ů with plain
U, Ú (Ú), or Å (Å) when the ring-above u is required - Use the old incorrect CSS escape
\0016E—the correct value is\016E - Put CSS escape
\016Ein HTML text nodes - Substitute plain
Uplus a combining ring 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
\016EUnicode U+016E — LATIN CAPITAL LETTER U WITH RING ABOVE
Previous: Uppercase U Ogonek (Ų) Next: Uppercase U Tilde (Ũ)
❓ Frequently Asked Questions
Ů (named), Ů (hex), Ů (decimal), or \016E in CSS content. All produce Ů. In UTF-8 you can also type Ů directly.U+016E (LATIN CAPITAL LETTER U WITH RING ABOVE). Latin Extended-A block. Hex 016E, decimal 366. Used primarily in Czech. Lowercase form is U+016F (ů).Ů. You can also use numeric codes Ů or Ů, or the CSS entity \016E. Do not confuse with plain U (U+0055) or Å (A with ring).Ů or Ů) or the named entity Ů is used in HTML content; CSS entity \016E 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
