HTML Entity for Uppercase U Caron (Ǔ)

What You'll Learn
How to display the uppercase U with caron (Ǔ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+01D3 in the Latin Extended-B block. The caron (ˇ) marks the third tone in capitalized Hanyu Pinyin (e.g. NǓ, MǓ) and appears in transliteration and linguistic notation.
Render it with &Ucaron;, Ǔ, Ǔ, or CSS escape \01D3. The named entity &Ucaron; is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase U Caron Entity
U+01D3Latin Extended-B
ǓHexadecimal reference
ǓDecimal reference
&Ucaron;Most readable option
Name Value
──────────── ──────────
Unicode U+01D3
Hex code Ǔ
HTML code Ǔ
Named entity &Ucaron;
CSS code \01D3
Meaning Latin capital letter U with caron
Related U+01D4 = &ucaron; (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase U caron (Ǔ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01D3";
}
</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 uppercase U caron (Ǔ) and the named entity &Ucaron; are supported in modern browsers:
👀 Live Preview
See the uppercase U caron (Ǔ) in language and content contexts:
U (U+0055) | Ú (u acute) | Ŭ (u breve) | Ü (u diaeresis)🧠 How It Works
Hexadecimal Code
Ǔ uses the Unicode hexadecimal value 01D3 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǔ uses the decimal Unicode value 467 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
\01D3 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+01D3 sits in Latin Extended-B. Lowercase equivalent: U+01D4 (&ucaron;). Do not confuse with plain U (U+0055), Ú (u acute), Ŭ (u breve), or Ü (u diaeresis).
Use Cases
The uppercase U caron (Ǔ) is commonly used in:
Capitalized third-tone syllables such as NǓ, MǓ, and LǓ in titles and headings.
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+01D3.
💡 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 Ü
- Assume Czech or Slovak use Ǔ—those languages use ů (ů) for long u, not U caron
- Put CSS escape
\01D3in 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
\01D3Unicode U+01D3 — LATIN CAPITAL LETTER U WITH CARON
Lowercase pair is U+01D4 (ǔ, &ucaron;)
Previous: Uppercase U Breve (Ŭ) Next: Uppercase U Circumflex
❓ Frequently Asked Questions
&Ucaron; (named), Ǔ (hex), Ǔ (decimal), or \01D3 in CSS content. The named entity &Ucaron; is the most readable for HTML content.U+01D3 (LATIN CAPITAL LETTER U WITH CARON). Latin Extended-B block. Hex 01D3, decimal 467. The caron marks the third tone in capitalized Hanyu Pinyin romanization.Ǔ or Ǔ) or the named entity &Ucaron; is used in HTML content. The CSS entity (\01D3) 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
