HTML Entity for Lowercase U Caron (ǔ)

What You'll Learn
How to display the lowercase u with caron (ǔ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+01D4 in the Latin Extended-B block. The caron (ˇ) marks the third tone in Hanyu Pinyin (e.g. nǔ, mǔ) and appears in transliteration and linguistic notation.
Render it with &ucaron;, ǔ, ǔ, or CSS escape \01D4. The named entity &ucaron; is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase U Caron Entity
U+01D4Latin Extended-B
ǔHexadecimal reference
ǔDecimal reference
&ucaron;Most readable option
Name Value
──────────── ──────────
Unicode U+01D4
Hex code ǔ
HTML code ǔ
Named entity &ucaron;
CSS code \01D4
Meaning Latin small letter u with caron
Related U+01D3 = &Ucaron; (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase u caron (ǔ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01D4";
}
</style>
</head>
<body>
<p>Symbol (hex): ǔ</p>
<p>Symbol (decimal): ǔ</p>
<p>Symbol (named): &ucaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase u caron (ǔ) and the named entity &ucaron; are supported in modern browsers:
👀 Live Preview
See the lowercase u caron (ǔ) in language and content contexts:
u (U+0075) | ú (u acute) | ŭ (u breve) | ü (u diaeresis)🧠 How It Works
Hexadecimal Code
ǔ uses the Unicode hexadecimal value 01D4 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǔ uses the decimal Unicode value 468 to display the same character. A common method for Latin Extended-B characters.
Named Entity
&ucaron; is the standard named entity for ǔ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\01D4 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+01D4 sits in Latin Extended-B. Uppercase equivalent: U+01D3 (&Ucaron;). Do not confuse with plain u (U+0075), ú (u acute), ŭ (u breve), or ü (u diaeresis).
Use Cases
The lowercase u caron (ǔ) is commonly used in:
Essential for correct Pinyin spelling of the third tone, as in nǔ, mǔ, and lǔ.
Chinese courses, textbooks, and apps teaching tone marks in romanization.
Phonetic transcription and linguistic descriptions using the caron diacritic.
Romanization systems and dictionaries requiring extended Latin characters.
Academic and scholarly publications with correct tone-marked romanization.
Headlines and styled text requiring the caron diacritical mark.
Documentation, character maps, and encoding tutorials for U+01D4.
💡 Best Practices
Do
- Use
&ucaron;in HTML when possible for readability - Serve pages as UTF-8; you can also type ǔ directly in UTF-8 source
- Set
lang="zh-Latn"on Pinyin content for correct language hints - Use fonts that support Latin Extended-B characters
- Distinguish ǔ (caron) from ú (acute), ŭ (breve), and ü (diaeresis)
Don’t
- Substitute plain
uwhen ǔ is required for correct tone marking - Confuse caron ǔ with acute ú, breve ŭ, or diaeresis ü
- Use the old incorrect CSS escape
\001D4—the correct value is\01D4 - Put CSS escape
\01D4in HTML text nodes - Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render ǔ; named entity is most readable
ǔ ǔ &ucaron;For CSS stylesheets, use the escape in the content property
\01D4Unicode U+01D4 — LATIN SMALL LETTER U WITH CARON
Essential for Pinyin third tone; also used in linguistics and transliteration
Previous: Lowercase U Breve (ŭ) Next: Lowercase U Circumflex
❓ Frequently Asked Questions
&ucaron; (named), ǔ (hex), ǔ (decimal), or \01D4 in CSS content. The named entity &ucaron; is the most readable for HTML content.U+01D4 (LATIN SMALL LETTER U WITH CARON). Latin Extended-B block. Hex 01D4, decimal 468. The caron marks the third tone in Hanyu Pinyin romanization.ǔ or ǔ) or the named entity &ucaron; is used in HTML content. The CSS entity (\01D4) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ǔ but in different contexts.&ucaron;. It is part of the HTML5 entity set and is well supported. You can also use ǔ or ǔ for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
