HTML Entity for Lowercase U Ring Above (ů)

What You'll Learn
How to display the lowercase 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ůň, domů, dům). It is U+016F (LATIN SMALL LETTER U WITH RING ABOVE) in the Latin Extended-A block.
Render it with ů, ů, ů, or CSS escape \016F. The named entity ů is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase U Ring Above Entity
U+016FLatin Extended-A
ůHexadecimal reference
ůDecimal reference
ůMost readable option
Name Value
──────────── ──────────
Unicode U+016F
Hex code ů
HTML code ů
Named entity ů
CSS code \016F
Meaning Latin small letter u with ring above
Related U+016E = Ů (Ů)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase 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: "\016F";
}
</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 ring above (ů) and the named entity ů are supported in modern browsers:
👀 Live Preview
See the lowercase u ring above (ů) in Czech and content contexts:
u (U+0075) | ú (u acute) | ū (u macron) | å (a ring)🧠 How It Works
Hexadecimal Code
ů uses the Unicode hexadecimal value 016F to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ů uses the decimal Unicode value 367 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
\016F 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+016F sits in Latin Extended-A. Uppercase equivalent: U+016E (Ů). Do not confuse with plain u (U+0075) or å (a with ring).
Use Cases
The lowercase u ring above (ů) is commonly used in:
Essential in words like kůň (horse), domů (homeward), dům (house). 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+0075) and ú (acute)
Don’t
- Substitute plain
uwhen ů is required for correct Czech spelling - Confuse ů (u ring) with å (a ring) or ū (u macron)
- Use the old incorrect CSS escape
\0016F—the correct value is\016F - Put CSS escape
\016Fin 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
\016FUnicode U+016F — LATIN SMALL LETTER U WITH RING ABOVE
Essential for Czech; uppercase is Ů (U+016E, Ů)
Previous: Lowercase U Ogonek (ų) Next: Lowercase U Tilde (ũ)
❓ Frequently Asked Questions
ů (named), ů (hex), ů (decimal), or \016F in CSS content. The named entity ů is the most readable for HTML content.U+016F (LATIN SMALL LETTER U WITH RING ABOVE). Latin Extended-A block. Hex 016F, decimal 367. Used primarily in Czech. Uppercase form is U+016E (Ů) with named entity Ů.ů or ů) or the named entity ů is used in HTML content. The CSS entity (\016F) 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
