HTML Entity for Lowercase U Diaeresis Acute (ǘ)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+01D8

What Is the Lowercase U Diaeresis Acute Entity?

Lowercase u with diaeresis and acute (ǘ) is the Latin Extended-B character at Unicode U+01D8 (LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE). It stacks two dots and an acute on u. In Hanyu Pinyin it marks the second tone on ü. HTML5 defines no named entity for it.

Remember
Character     ǘ
Unicode       U+01D8
Named entity  (none)
Hex entity    ǘ
Decimal       ǘ
CSS escape    \01D8

All of these produce the same glyph: ǘ. Prefer a pasted ǘ in UTF-8 pages; use numeric or CSS forms when you need an escape.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterǘHTML text (UTF-8 default)
Named entitynoneNot defined in HTML5
Hex entityǘHTML markup
Decimal entityǘHTML markup
CSS escape\01D8Stylesheet content

When to Use Which

SituationUse
Pinyin / UTF-8 textType or paste ǘ
Numeric entity requiredǘ or ǘ
Generated text via ::before / ::aftercontent: "\01D8"
Plain ü without tone markü (U+00FC) — see Related Topics
Looking for a named formNone — use hex or decimal instead

Live Preview

Lowercase u with diaeresis and acute rendered in common contexts.

Pinyin nǘ, lǘ
Large glyph ǘ
Case pair Ǘ ǘ
With entities Hex: ǘ | Decimal: ǘ
Not the same ü (ü) — no acute tone

Complete HTML Example

One page that shows lowercase u with diaeresis and acute with hex, decimal, direct, and CSS forms. Use View Output or open the live editor.

Hex + Decimal + Direct + CSS

Four ways to produce ǘ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase U Diaeresis Acute (ǘ) in HTML</title>
  <style>
    #point::after {
      content: "\01D8";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x01D8;</p>
  <p>Using HTML Code: &#472;</p>
  <p>Using Direct Character: ǘ</p>
  <p id="point">Using CSS Entity: </p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+01D8 → &#x01D8; in HTML. Reliable numeric form.

2. Decimal: same code point as 472 → &#472;. Same glyph.

3. Direct: paste ǘ in a UTF-8 file with <meta charset="UTF-8">.

4. CSS: use \01D8 in content (not an HTML entity). #point::after appends that ǘ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with the u diaeresis acute entity.

Named

No named entity

HTML5 has no &... name for U+01D8 — use hex or decimal instead.

CSS vs HTML

Do not mix escapes

\01D8 belongs in CSS. &#x01D8; / &#472; belong in HTML.

Look-alikes

Not plain ü

Umlaut ü is U+00FC (&uuml;). This letter adds an acute for Pinyin tone 2.

Case

ǘ vs Ǘ

Uppercase is U+01D7 — a different code point from U+01D8.

Semicolon

End references

Always finish with ; — write &#472;, not &#472.

UTF-8

Declare charset

If you paste ǘ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Lowercase u with diaeresis and acute (U+01D8) and its entity forms (&#x01D8;, &#472;, CSS \\01D8) are supported in all mainstream browsers.

✓ Universal support

Lowercase U Diaeresis Acute (&#x01D8;)

Paste ǘ, or encode with hex, decimal, or CSS escape — same glyph everywhere. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+01D8 / entities Full support

Bottom line: Prefer a pasted ǘ in UTF-8 text. Use &#x01D8; / &#472; when a numeric form is required, and \\01D8 only inside CSS content.

Key Takeaways

  • Unicode: u with diaeresis and acute is U+01D8 (decimal 472), Latin Extended-B.
  • HTML: no named entity — use &#x01D8; or &#472;.
  • CSS: use \01D8 inside content for generated text.
  • Use: Pinyin second tone on ü — not the same as plain &uuml;.

One line: U+01D8 → &#x01D8; / &#472; / CSS \01D8 (no named entity).

Frequently Asked Questions

Use &#x01D8; (hex), &#472; (decimal), type ǘ in UTF-8, or the CSS escape \01D8 in content. There is no HTML5 named entity for U+01D8.
U+01D8 (LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE). Hex 01D8, decimal 472. It belongs to Latin Extended-B and marks Pinyin second tone on ü.
No. HTML5 does not define a named entity for this character. Use numeric references like &#472; or &#x01D8; when you need an entity form.
Use it for Hanyu Pinyin second-tone ü, linguistic examples, CSS-generated content, or when encoding must be explicit. Prefer a pasted ǘ in UTF-8 when possible.
HTML entities (&#472; or &#x01D8;) go in markup. The CSS escape \01D8 is used in stylesheets (usually in the content property of ::before/::after). Both render ǘ.
Plain ü is U+00FC (&uuml;) with only diaeresis. U+01D8 (ǘ) adds an acute accent on top — used for Pinyin second tone. Do not substitute one for another.

Did you know?

Lowercase u with diaeresis and acute (ǘ) is Unicode U+01D8 (decimal 472) in Latin Extended-B. HTML5 has no named entity — use &#x01D8; or &#472;. In Hanyu Pinyin it marks the second tone on ü.

Next: Lowercase U Diaeresis Caron

Learn the HTML entity for u with diaeresis and caron — the next letter in this entity sequence.

Lowercase U Diaeresis Caron tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful