HTML Entity for Uppercase U Breve (Ŭ)

What You'll Learn
How to display the uppercase U with breve (Ŭ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+016C in the Latin Extended-A block. It is the uppercase form of the Esperanto letter ŭ and appears in linguistic notation and transliteration systems.
Render it with Ŭ, Ŭ, Ŭ, or CSS escape \016C. The named entity Ŭ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase U Breve Entity
U+016CLatin Extended-A
ŬHexadecimal reference
ŬDecimal reference
ŬMost readable option
Name Value
──────────── ──────────
Unicode U+016C
Hex code Ŭ
HTML code Ŭ
Named entity Ŭ
CSS code \016C
Meaning Latin capital letter U with breve
Related U+016D = ŭ (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase U breve (Ŭ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\016C";
}
</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 breve (Ŭ) and the named entity Ŭ are supported in modern browsers:
👀 Live Preview
See the uppercase U breve (Ŭ) in language and content contexts:
U (U+0055) | Ú (u acute) | ů (u ring)🧠 How It Works
Hexadecimal Code
Ŭ uses the Unicode hexadecimal value 016C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ŭ uses the decimal Unicode value 364 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
\016C 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+016C sits in Latin Extended-A. Lowercase equivalent: U+016D (ŭ). Do not confuse with plain U (U+0055), Ú (u acute), or ů (u ring).
Use Cases
The uppercase U breve (Ŭ) is commonly used in:
Alphabet charts, primers, and educational content showing the six Esperanto diacritic letters including Ŭ.
Phonetic transcription and linguistic descriptions of short vowels with breve marking.
Church Slavonic, Vietnamese romanization, and other systems using the breve diacritic.
Courses, dictionaries, and glossaries showing correct diacritics and case pairs.
Academic and scholarly publications requiring extended Latin characters.
Headlines, font specimens, and styled text requiring the breve diacritical mark.
Documentation, character maps, and encoding tutorials for U+016C.
💡 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="eo"on Esperanto content for correct pronunciation hints - Use fonts that support Latin Extended-A characters
- Distinguish Ŭ (breve) from Ú (acute) and plain
U(U+0055)
Don’t
- Substitute plain
Uwhen Ŭ is required for correct spelling - Confuse breve Ŭ with acute Ú or ring ů
- Use the old incorrect CSS escape
\0016C—the correct value is\016C - Put CSS escape
\016Cin HTML text nodes - Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render Ŭ; named entity is most readable
Ŭ Ŭ ŬFor CSS stylesheets, use the escape in the content property
\016CUnicode U+016C — LATIN CAPITAL LETTER U WITH BREVE
Lowercase pair is U+016D (ŭ, ŭ)
Previous: Uppercase U Acute (Ú) Next: Uppercase U Caron
❓ Frequently Asked Questions
Ŭ (named), Ŭ (hex), Ŭ (decimal), or \016C in CSS content. The named entity Ŭ is the most readable for HTML content.U+016C (LATIN CAPITAL LETTER U WITH BREVE). Latin Extended-A block. Hex 016C, decimal 364. The breve indicates a short vowel and is part of the Esperanto alphabet.Ŭ or Ŭ) or the named entity Ŭ is used in HTML content. The CSS entity (\016C) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ŭ but in different contexts.Ŭ. It is part of the 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
