HTML Entity for Lowercase U Macron (ū)

What You'll Learn
How to display the lowercase u with macron (ū) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+016B in the Latin Extended-A block. It combines the letter u with a macron (overline) indicating a long vowel and is a distinct letter in Latvian (e.g. būt, mūs) and used in Māori and linguistic notation.
Render it with ū, ū, ū, or CSS escape \016B. The named entity ū is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase U Macron Entity
U+016BLatin Extended-A
ūHexadecimal reference
ūDecimal reference
ūMost readable option
Name Value
──────────── ──────────
Unicode U+016B
Hex code ū
HTML code ū
Named entity ū
CSS code \016B
Meaning Latin small letter u with macron
Related U+016A = Ū (Ū, uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase u macron (ū) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\016B";
}
</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 macron (ū) and the named entity ū are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the lowercase u macron (ū) in language and content contexts:
Ūu🧠 How It Works
Hexadecimal Code
ū uses the Unicode hexadecimal value 016B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ū uses the decimal Unicode value 363 to display the same character. A common method when a numeric reference is needed.
Named Entity
ū is the standard named entity for ū—readable in source HTML and part of the HTML entity set for Latin Extended-A characters.
CSS Entity
\016B 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+016B sits in Latin Extended-A. Uppercase equivalent: U+016A (Ū). Do not confuse with ǖ (u diaeresis macron) or ŭ (u breve).
Use Cases
The lowercase u macron (ū) is commonly used in:
Essential letter in Latvian orthography (būt, mūs, dūra) for websites, news, and localized UI.
Long vowel u in Meori words and te reo Meori web content and educational materials.
Multilingual websites, CMS content, and email templates requiring correct extended Latin characters.
Phonetic transcription indicating long u with macron marking.
Courses, dictionaries, and grammar resources teaching macron-accented u.
Using the correct character (U+016B) with appropriate lang attributes helps screen readers pronounce text correctly.
When escaping user input or generating HTML, ū ensures safe, correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ū directly in UTF-8 source
- Use
ūin HTML when possible for readability - Use numeric references (
ūorū) when escaping is required - Use
\016Bin CSScontentwhen generating the symbol via pseudo-elements - Distinguish ū from ǖ (u diaeresis macron) and ŭ (u breve)
Don’t
- Confuse ū with ǖ (Pinyin u diaeresis macron) or plain
u - Use the old incorrect CSS escape
\0016B—the correct value is\016B - Put CSS escape
\016Bin HTML text nodes - Substitute plain
uwhen the macron letter is required (e.g. Latvian būt) - Double-encode numeric references in dynamically generated HTML
Key Takeaways
Three HTML references plus a named entity all render ū
ū ū ūFor CSS stylesheets, use the escape in the content property
\016BUnicode U+016B — LATIN SMALL LETTER U WITH MACRON
Latvian (būt, mūs); uppercase is Ū (Ū)
Previous: Lowercase U Latin (ͧ) Next: Lowercase U Middle Bar (ʉ)
❓ Frequently Asked Questions
ū (named), ū (hex), ū (decimal), or \016B in CSS content. All produce ū. In UTF-8 you can also type ū directly.U+016B (LATIN SMALL LETTER U WITH MACRON). Latin Extended-A block. Hex 016B, decimal 363. Used in Latvian (e.g. būt, mūs). Uppercase form is U+016A (Ū).ū. You can also use numeric codes ū or ū, or the CSS entity \016B. Do not confuse with U+01D6 (u diaeresis macron).ū or ū) or the named entity ū is used in HTML content. The CSS entity \016B is used in stylesheets in the content property of pseudo-elements. Both produce ū but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
