HTML Entity for Lowercase U Double Acute (ű)

What You'll Learn
How to display the lowercase u with double acute (ű) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0171 in the Latin Extended-A block. It combines the letter u with a double acute accent (Hungarian: hosszú ékezet) and is a distinct letter in the Hungarian alphabet (e.g. űrhajó for “spaceship”).
Render it with ű, ű, ű, or CSS escape \0171. The named entity ű is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase U Double Acute Entity
U+0171Latin Extended-A
űHexadecimal reference
űDecimal reference
űMost readable option
Name Value
──────────── ──────────
Unicode U+0171
Hex code ű
HTML code ű
Named entity ű
CSS code \0171
Meaning Latin small letter u with double acute
Related U+0170 = Ű (Ű, uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase u double acute (ű) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0171";
}
</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 double acute (ű) and the named entity ű are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the lowercase u double acute (ű) in language and content contexts:
Ű🧠 How It Works
Hexadecimal Code
ű uses the Unicode hexadecimal value 0171 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ű uses the decimal Unicode value 369 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
\0171 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+0171 sits in Latin Extended-A. Uppercase equivalent: U+0170 (Ű). Do not confuse with ú (acute), û (circumflex), or ü (diaeresis).
Use Cases
The lowercase u double acute (ű) is commonly used in:
Essential letter in Hungarian orthography (űrhajó, űző) and official Hungarian-language web content.
Hungarian courses, textbooks, and apps teaching the extended Latin alphabet including ű and Ű.
Phonetic transcription and linguistic descriptions using u with double acute marking.
Romanization systems and dictionaries requiring extended Latin characters with double acute accents.
Papers, character charts, and language resources requiring precise precomposed character representation.
Using the correct character (U+0171) with lang="hu" helps assistive technologies interpret Hungarian text correctly.
When building HTML from Hungarian data, using ű or ű guarantees 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
\0171in CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-A characters (U+0100–U+017F)
Don’t
- Confuse ű with ú (ú), û (û), or ü (ü)
- Use the old incorrect CSS escape
\00171—the correct value is\0171 - Put CSS escape
\0171in HTML text nodes - Substitute plain
uwhen the Hungarian letter ű is required - 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
\0171Unicode U+0171 — LATIN SMALL LETTER U WITH DOUBLE ACUTE
Hungarian letter (űrhajó); uppercase is Ű (Ű)
Previous: Lowercase U Diaeresis Macron (ǖ) Next: Lowercase U Double Grave
❓ Frequently Asked Questions
ű (named), ű (hex), ű (decimal), or \0171 in CSS content. All produce ű. In UTF-8 you can also type ű directly.U+0171 (LATIN SMALL LETTER U WITH DOUBLE ACUTE). Latin Extended-A block. Hex 0171, decimal 369. Used in Hungarian (e.g. űrhajó). Uppercase form is U+0170 (Ű).ű. You can also use numeric codes ű or ű, or the CSS entity \0171. Do not confuse with ú (U+00FA) or û (U+00FB).ű or ű) or the named entity ű is used in HTML content. The CSS entity \0171 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
