HTML Entity for Uppercase U Horn (Ư)

What You'll Learn
How to display the uppercase U with horn (Ư) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01AF in the Latin Extended-B block. It combines the letter U with a horn diacritic and is the capital form of a distinct letter in the Vietnamese alphabet (e.g. TƯƠNG, THƯ, ƯỚC).
Render it with Ư, Ư, or CSS escape \01AF. There is no named HTML entity for this character. In UTF-8 documents you can also type Ư directly.
⚡ Quick Reference — Uppercase U Horn Entity
U+01AFLatin Extended-B
ƯHexadecimal reference
ƯDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01AF
Hex code Ư
HTML code Ư
Named entity (none)
CSS code \01AF
Meaning Latin capital letter U with horn
Related U+01B0 = ư (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase U horn (Ư) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01AF";
}
</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 uppercase U horn (Ư) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase U horn (Ư) in language and content contexts:
U (U+0055) | Ʊ (o with horn) | Ü (Ü)🧠 How It Works
Hexadecimal Code
Ư uses the Unicode hexadecimal value 01AF to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ư uses the decimal Unicode value 431 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
\01AF 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+01AF sits in Latin Extended-B. Lowercase equivalent: U+01B0 (ư). Do not confuse with plain U or Ʊ (o with horn).
Use Cases
The uppercase U horn (Ư) is commonly used in:
Capital form of the horned u in Vietnamese orthography (TƯƠNG, THƯ, ƯỚC) for headlines, signage, 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.
Input validation messages, labels, and placeholders in Vietnamese-language applications.
Using the correct character (U+01AF) with lang="vi" helps assistive technologies interpret Vietnamese text 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
\01AFin CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-B characters (U+0180–U+024F)
- Set
lang="vi"on Vietnamese content for accessibility and SEO
Don’t
- Confuse Ư with plain
Uor Ʊ (o with horn) when the horned letter is required - Expect a named HTML entity—none exists for Ư
- Use the old incorrect CSS escape
\001AF—the correct value is\01AF - Put CSS escape
\01AFin 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
\01AFUnicode U+01AF — LATIN CAPITAL LETTER U WITH HORN
Vietnamese letter (uppercase); lowercase is ư (U+01B0)
Previous: Uppercase U Grave (Ù) Next: Uppercase U Inverted Breve
❓ Frequently Asked Questions
Ư (hex), Ư (decimal), or \01AF in CSS content. There is no named HTML entity for Ư. In UTF-8 you can also type Ư directly.U+01AF (LATIN CAPITAL LETTER U WITH HORN). Latin Extended-B block. Hex 01AF, decimal 431. Essential in Vietnamese. Lowercase form is U+01B0 (ư).Ư or Ư, or the CSS entity \01AF. Do not confuse with plain U (U+0055) or Ʊ (o with horn).Ư or Ư) is used in HTML content; CSS entity \01AF 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
