HTML Entity for Uppercase U Breve (Ŭ)

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

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

Unicode U+016C

Latin Extended-A

Hex Code Ŭ

Hexadecimal reference

HTML Code Ŭ

Decimal reference

Named Entity Ŭ

Most readable option

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

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:

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

🌐 Browser Support

The uppercase U breve (Ŭ) and the named entity &Ubreve; are supported in modern browsers:

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

👀 Live Preview

See the uppercase U breve (Ŭ) in language and content contexts:

Large glyphŬ
EsperantoDiacritics: Ĉ, Ĝ, Ĥ, Ĵ, Ŝ, Ŭ
Case pairŬ (uppercase) / ŭ (lowercase)
PhoneticBreve (˘) over U marks a short vowel
Named entity&Ubreve; renders as Ŭ
Not the same asplain U (U+0055)  |  Ú (u acute)  |  ů (u ring)
Numeric refs&#x016C; &#364; &Ubreve; \016C

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\016C 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+016C sits in Latin Extended-A. Lowercase equivalent: U+016D (&ubreve;). Do not confuse with plain U (U+0055), Ú (u acute), or ů (u ring).

Use Cases

The uppercase U breve (Ŭ) is commonly used in:

🌐 Esperanto

Alphabet charts, primers, and educational content showing the six Esperanto diacritic letters including Ŭ.

🔤 Linguistics & phonetics

Phonetic transcription and linguistic descriptions of short vowels with breve marking.

📝 Latin transliteration

Church Slavonic, Vietnamese romanization, and other systems using the breve diacritic.

📚 Language learning

Courses, dictionaries, and glossaries showing correct diacritics and case pairs.

📄 Publishing

Academic and scholarly publications requiring extended Latin characters.

🎨 Typography

Headlines, font specimens, and styled text requiring the breve diacritical mark.

🔍 Character reference

Documentation, character maps, and encoding tutorials for U+016C.

💡 Best Practices

Do

  • Use &Ubreve; 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 U when Ŭ 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 \016C in HTML text nodes
  • Omit UTF-8 encoding on pages with extended Latin characters

Key Takeaways

1

Four references render Ŭ; named entity is most readable

&#x016C; &#364; &Ubreve;
2

For CSS stylesheets, use the escape in the content property

\016C
3

Unicode U+016C — LATIN CAPITAL LETTER U WITH BREVE

4

Lowercase pair is U+016D (ŭ, &ubreve;)

❓ Frequently Asked Questions

Use &Ubreve; (named), &#x016C; (hex), &#364; (decimal), or \016C in CSS content. The named entity &Ubreve; 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.
In Esperanto alphabet charts and educational content, linguistic and phonetic notation, Latin transliteration, language learning materials, dictionaries, and typography that requires the breve diacritical mark.
HTML code (&#364; or &#x016C;) or the named entity &Ubreve; 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.
Yes. The named HTML entity is &Ubreve;. It is part of the HTML5 entity set and is well supported. You can also use &#364; or &#x016C; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented 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