HTML Entity for Lowercase U Breve (ŭ)

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

What You'll Learn

How to display the lowercase u with breve (ŭ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+016D in the Latin Extended-A block. It is essential in Esperanto (e.g. aŭto, Eŭropo) and appears in linguistic notation and transliteration systems.

Render it with ŭ, ŭ, ŭ, or CSS escape \016D. The named entity ŭ is often the most readable option in HTML source.

⚡ Quick Reference — Lowercase U Breve Entity

Unicode U+016D

Latin Extended-A

Hex Code ŭ

Hexadecimal reference

HTML Code ŭ

Decimal reference

Named Entity ŭ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+016D
Hex code       ŭ
HTML code      ŭ
Named entity   ŭ
CSS code       \016D
Meaning        Latin small letter u with breve
Related        U+016C = Ŭ (uppercase)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the lowercase 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: "\016D";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x016D;</p>
<p>Symbol (decimal): &#365;</p>
<p>Symbol (named): &ubreve;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase 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 lowercase u breve (ŭ) in language and content contexts:

Large glyphŭ
Esperantoaŭto, Eŭropo, ŭu
PhoneticShort vowel: ŭ marks a breve (˘) over u
Named entity&ubreve; renders as ŭ
Not the same asplain u (U+0075)  |  ú (u acute)  |  ů (u ring)
Numeric refs&#x016D; &#365; &ubreve; \016D

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#365; uses the decimal Unicode value 365 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

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

Use Cases

The lowercase u breve (ŭ) is commonly used in:

🌐 Esperanto

Essential for correct Esperanto spelling in words like aŭto, Eŭropo, and ŭu.

🔤 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.

📄 Publishing

Academic and scholarly publications requiring extended Latin characters.

🎨 Typography

Headlines and styled text requiring the breve diacritical mark.

🔍 Character reference

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

💡 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+0075)

Don’t

  • Substitute plain u when ŭ is required for correct spelling
  • Confuse breve ŭ with acute ú or ring ů
  • Use the old incorrect CSS escape \0016D—the correct value is \016D
  • Put CSS escape \016D 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

&#x016D; &#365; &ubreve;
2

For CSS stylesheets, use the escape in the content property

\016D
3

Unicode U+016D — LATIN SMALL LETTER U WITH BREVE

4

Essential for Esperanto; also used in linguistics and transliteration

❓ Frequently Asked Questions

Use &ubreve; (named), &#x016D; (hex), &#365; (decimal), or \016D in CSS content. The named entity &ubreve; is the most readable for HTML content.
U+016D (LATIN SMALL LETTER U WITH BREVE). Latin Extended-A block. Hex 016D, decimal 365. The breve indicates a short vowel and is essential in Esperanto orthography.
In Esperanto text, linguistic and phonetic content, Latin transliteration, language learning materials, dictionaries, and typography that requires the breve diacritical mark.
HTML code (&#365; or &#x016D;) or the named entity &ubreve; is used in HTML content. The CSS entity (\016D) 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 &#365; or &#x016D; 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