HTML Entity for Uppercase U Diaeresis Macron (Ǖ)

What You'll Learn
How to display the uppercase U with diaeresis and macron (Ǖ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01D5 in the Latin Extended-B block. It combines the letter U with a diaeresis (two dots) and a macron (horizontal line), and represents the capitalized first tone of ü in Hanyu Pinyin romanization.
Render it with Ǖ, Ǖ, or CSS escape \01D5. There is no named HTML entity for this character. In UTF-8 documents you can also type Ǖ directly.
⚡ Quick Reference — Uppercase U Diaeresis Macron Entity
U+01D5Latin Extended-B
ǕHexadecimal reference
ǕDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01D5
Hex code Ǖ
HTML code Ǖ
Named entity (none)
CSS code \01D5
Meaning Latin capital letter U with diaeresis and macron
Related U+01D6 = ǖ (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase U diaeresis macron (Ǖ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01D5";
}
</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 macron (Ǖ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase U diaeresis macron (Ǖ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ǖ uses the Unicode hexadecimal value 01D5 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǖ uses the decimal Unicode value 469 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
\01D5 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+01D5 sits in Latin Extended-B. Lowercase equivalent: U+01D6 (ǖ). Do not confuse with Ü (diaeresis only), Ǘ (diaeresis + acute), Ǚ (diaeresis + caron), or other precomposed ü-tone letters in the U+01D6–U+01DC range.
Use Cases
The uppercase U diaeresis macron (Ǖ) is commonly used in:
Represents the capitalized first 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 macron 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+01D5) 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
\01D5in 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
\001D5—the correct value is\01D5 - Put CSS escape
\01D5in 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
\01D5Unicode U+01D5 — LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON
Pinyin first-tone ü (capitalized); lowercase is ǖ (U+01D6)
Previous: Uppercase U Diaeresis Grave (Ǜ) Next: Uppercase U Double Acute
❓ Frequently Asked Questions
Ǖ (hex), Ǖ (decimal), or \01D5 in CSS content. There is no named HTML entity for Ǖ. In UTF-8 you can also type Ǖ directly.U+01D5 (LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON). Latin Extended-B block. Hex 01D5, decimal 469. Represents the capitalized first tone of ü in Hanyu Pinyin. Lowercase form is U+01D6 (ǖ).Ǖ or Ǖ, or the CSS entity \01D5. Do not confuse with Ü (U+00DC), which is U with diaeresis only.Ǖ or Ǖ) is used in HTML content; CSS entity \01D5 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
