HTML Entity for Uppercase U Ring Above (Ů)

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

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

Unicode U+016E

Latin Extended-A

Hex Code Ů

Hexadecimal reference

HTML Code Ů

Decimal reference

Named Entity Ů

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\016E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x016E;</p>
<p>Symbol (decimal): &#366;</p>
<p>Symbol (named): &Uring;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase U ring above (Ů) and the named entity &Uring; are supported in all modern browsers as part of Latin Extended-A:

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

👀 Live Preview

See the uppercase U ring above (Ů) in Czech and content contexts:

Large glyphŮ
CzechKŮŇ, DŮM
Named entity&Uring; renders as Ů
Case pairŮ (uppercase) / ů (lowercase, &uring;)
Not the same asplain U (U+0055)  |  Ú (u acute)  |  Ū (u macron)  |  Å (&Aring;)
Numeric refs&#x016E; &#366; &Uring; \016E

🧠 How It Works

1

Hexadecimal Code

&#x016E; uses the Unicode hexadecimal value 016E to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#366; uses the decimal Unicode value 366 to display the same character. A common method for Latin Extended-A characters.

HTML markup
3

Named Entity

&Uring; is the standard named entity for Ů—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\016E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ů. Unicode U+016E sits in Latin Extended-A. Lowercase equivalent: U+016F (&uring;). Do not confuse with plain U (U+0055) or Å (A with ring).

Use Cases

The uppercase U ring above (Ů) is commonly used in:

🇨🇿 Czech

Capital form in Czech orthography (KŮŇ, DŮM) for headlines, signage, and localized UI. Represents the Czech long u sound.

📝 Proper names

Czech place names, surnames, and brands that include Ů must display correctly for accessibility and SEO.

🌐 Internationalization

Czech-language websites, forms, and CMS content requiring correct orthography.

🔤 Education

Language learning apps, dictionaries, and pronunciation guides teaching Czech spelling.

📄 Publishing

Legal, academic, and editorial content in Czech requiring the ring-above U letter.

🎨 Typography

Headlines, logos, and styled text in Czech requiring correct spelling.

⚙ Programmatic HTML

When building HTML from i18n data, using &Uring; or &#366; guarantees correct output.

💡 Best Practices

Do

  • Use &Uring; 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, Ú (&Uacute;), or Å (&Aring;) when the ring-above u is required
  • Use the old incorrect CSS escape \0016E—the correct value is \016E
  • Put CSS escape \016E in HTML text nodes
  • Substitute plain U plus a combining ring when the precomposed letter is required
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Use the named entity for readability in HTML source

&Uring;
2

Or use hex/decimal references when escaping is needed

&#x016E; &#366;
3

For CSS stylesheets, use the escape in the content property

\016E
4

Unicode U+016E — LATIN CAPITAL LETTER U WITH RING ABOVE

❓ Frequently Asked Questions

Use &Uring; (named), &#x016E; (hex), &#366; (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 (&uring;).
When displaying Czech text in uppercase, proper names, headlines, localized UI, or any internationalized content requiring U with ring above.
Yes. The named HTML entity is &Uring;. You can also use numeric codes &#366; or &#x016E;, or the CSS entity \016E. Do not confuse with plain U (U+0055) or Å (A with ring).
HTML code (&#366; or &#x016E;) or the named entity &Uring; 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.

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