HTML Entity for Lowercase U Horn (ư)

What You'll Learn
How to display the lowercase u with horn (ư) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01B0 in the Latin Extended-B block. It combines the letter u with a horn diacritic and is a distinct letter in the Vietnamese alphabet (e.g. tương, thư).
Render it with ư, ư, or CSS escape \01B0. There is no named HTML entity for this character. In UTF-8 documents you can also type ư directly.
⚡ Quick Reference — Lowercase U Horn Entity
U+01B0Latin Extended-B
ưHexadecimal reference
ưDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01B0
Hex code ư
HTML code ư
Named entity (none)
CSS code \01B0
Meaning Latin small letter u with horn
Related U+01AF = Ư (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase u horn (ư) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01B0";
}
</style>
</head>
<body>
<p>Symbol (hex): ư</p>
<p>Symbol (decimal): ư</p>
<p>Symbol (direct): ư</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase u horn (ư) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the lowercase u horn (ư) in language and content contexts:
u (U+0075) | Ʊ (o with horn) | ü (ü)🧠 How It Works
Hexadecimal Code
ư uses the Unicode hexadecimal value 01B0 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ư uses the decimal Unicode value 432 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type ư directly in HTML when your document uses UTF-8 encoding. There is no named entity for this precomposed letter.
CSS Entity
\01B0 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: ư. Unicode U+01B0 sits in Latin Extended-B. Uppercase equivalent: U+01AF (Ư). Do not confuse with plain u or Ʊ (o with horn).
Use Cases
The lowercase u horn (ư) is commonly used in:
Essential letter in Vietnamese orthography (tương, thư, ưỚc) for websites, news, and localized UI.
Multilingual websites, CMS content, and email templates requiring correct Vietnamese characters.
Vietnamese courses, dictionaries, and grammar resources teaching the horn diacritic on u.
Phonetic transcription and linguistic descriptions using u with horn marking.
Papers, character charts, and language resources requiring precise precomposed character representation.
Using the correct character (U+01B0) with lang="vi" helps assistive technologies interpret Vietnamese correctly.
When building HTML from Vietnamese data, using ư or ư guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ư directly in UTF-8 source
- Use numeric references (
ưorư) when escaping is required - Use
\01B0in CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-B characters (U+0180–U+024F)
- Distinguish ư from plain
uand Ʊ (o with horn)
Don’t
- Confuse ư with plain
uor Ʊ (o with horn) when the Vietnamese letter is required - Expect a named HTML entity—none exists for ư
- Use the old incorrect CSS escape
\001B0—the correct value is\01B0 - Put CSS escape
\01B0in HTML text nodes - Double-encode numeric references in dynamically generated HTML
Key Takeaways
Type ư directly, or use hex/decimal references
ư ưFor CSS stylesheets, use the escape in the content property
\01B0Unicode U+01B0 — LATIN SMALL LETTER U WITH HORN
Vietnamese letter (tương, thư); uppercase is Ư (U+01AF)
Previous: Lowercase U Grave (ù) Next: Lowercase U Inverted Breve
❓ Frequently Asked Questions
ư (hex), ư (decimal), or \01B0 in CSS content. There is no named HTML entity for ư. In UTF-8 you can also type ư directly.U+01B0 (LATIN SMALL LETTER U WITH HORN). Latin Extended-B block. Hex 01B0, decimal 432. Used in Vietnamese (e.g. tương, thư). Uppercase form is U+01AF (Ư).ư or ư, or the CSS entity \01B0. Do not confuse with plain u (U+0075) or Ʊ (o with horn).ư or ư) is used in HTML content; CSS entity \01B0 is used in stylesheets in the content property of pseudo-elements. Both produce ư.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
