HTML Entity for Uppercase U Diaeresis Caron (Ǚ)

What You'll Learn
How to display the uppercase U with diaeresis and caron (Ǚ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01D9 in the Latin Extended-B block. It combines the letter U with a diaeresis (two dots) and a caron (háček), and represents the capitalized third tone of ü in Hanyu Pinyin romanization.
Render it with Ǚ, Ǚ, or CSS escape \01D9. There is no named HTML entity for this character. In UTF-8 documents you can also type Ǚ directly.
⚡ Quick Reference — Uppercase U Diaeresis Caron Entity
U+01D9Latin Extended-B
ǙHexadecimal reference
ǙDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01D9
Hex code Ǚ
HTML code Ǚ
Named entity (none)
CSS code \01D9
Meaning Latin capital letter U with diaeresis and caron
Related U+01DA = ǚ (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase U diaeresis caron (Ǚ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01D9";
}
</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 diaeresis caron (Ǚ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase U diaeresis caron (Ǚ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ǚ uses the Unicode hexadecimal value 01D9 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǚ uses the decimal Unicode value 473 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 combined diacritic symbol.
CSS Entity
\01D9 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+01D9 sits in Latin Extended-B. Lowercase equivalent: U+01DA (ǚ). Do not confuse with Ü (diaeresis only), Ǘ (diaeresis + acute), or other precomposed ü-tone letters in the U+01D6–U+01DC range.
Use Cases
The uppercase U diaeresis caron (Ǚ) is commonly used in:
Represents the capitalized third tone of ü in Pinyin romanization (e.g. NǙ, LǙ) and tone-chart reference material.
Chinese courses, textbooks, and apps teaching the four tones of ü with precomposed Unicode letters.
Phonetic transcription and linguistic descriptions using U with both diaeresis and caron marking.
Romanization systems and dictionaries requiring extended Latin characters with combined diacritics.
Papers, character charts, and language resources requiring precise precomposed character representation.
Using the correct character (U+01D9) with lang="zh-Latn" helps assistive technologies interpret Pinyin correctly.
When building HTML from Pinyin 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
\01D9in CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-B characters (U+0180–U+024F)
- Distinguish Ǚ from Ü (diaeresis only) and other ü-tone letters (ǖ, ǘ, ǚ, ǜ)
Don’t
- Confuse Ǚ with Ü (Ü) or plain U with separate accent markup when the precomposed character is required
- Expect a named HTML entity—none exists for Ǚ
- Use the old incorrect CSS escape
\001D9—the correct value is\01D9 - Put CSS escape
\01D9in 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
\01D9Unicode U+01D9 — LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON
Pinyin third-tone ü (capitalized); lowercase is ǚ (U+01DA)
Previous: Uppercase U Diaeresis Acute (Ǘ) Next: Uppercase U Diaeresis Grave
❓ Frequently Asked Questions
Ǚ (hex), Ǚ (decimal), or \01D9 in CSS content. There is no named HTML entity for Ǚ. In UTF-8 you can also type Ǚ directly.U+01D9 (LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON). Latin Extended-B block. Hex 01D9, decimal 473. Represents the capitalized third tone of ü in Hanyu Pinyin. Lowercase form is U+01DA (ǚ).Ǚ or Ǚ, or the CSS entity \01D9. Do not confuse with Ü (U+00DC), which is U with diaeresis only.Ǚ or Ǚ) is used in HTML content; CSS entity \01D9 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
