HTML Entity for Lowercase U Breve (ŭ)

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
U+016DLatin Extended-A
ŭHexadecimal reference
ŭDecimal reference
ŭMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\016D";
}
</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 breve (ŭ) and the named entity ŭ are supported in modern browsers:
👀 Live Preview
See the lowercase u breve (ŭ) in language and content contexts:
u (U+0075) | ú (u acute) | ů (u ring)🧠 How It Works
Hexadecimal Code
ŭ uses the Unicode hexadecimal value 016D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ŭ uses the decimal Unicode value 365 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
\016D 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+016D sits in Latin Extended-A. Uppercase equivalent: U+016C (Ŭ). Do not confuse with plain u (U+0075), ú (u acute), or ů (u ring).
Use Cases
The lowercase u breve (ŭ) is commonly used in:
Essential for correct Esperanto spelling in words like aŭto, Eŭropo, and ŭu.
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.
Academic and scholarly publications requiring extended Latin characters.
Headlines and styled text requiring the breve diacritical mark.
Documentation, character maps, and encoding tutorials for U+016D.
💡 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+0075)
Don’t
- Substitute plain
uwhen ŭ 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
\016Din 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
\016DUnicode U+016D — LATIN SMALL LETTER U WITH BREVE
Essential for Esperanto; also used in linguistics and transliteration
Previous: Lowercase U Acute (ú) Next: Lowercase U Caron
❓ Frequently Asked Questions
ŭ (named), ŭ (hex), ŭ (decimal), or \016D in CSS content. The named entity ŭ 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.ŭ or ŭ) or the named entity ŭ 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.ŭ. 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
