HTML Entity for Uppercase U Diaeresis Acute (Ǘ)

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