HTML Entity for Uppercase U Caron (Ǔ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+01D3

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

Unicode U+01D3

Latin Extended-B

Hex Code Ǔ

Hexadecimal reference

HTML Code Ǔ

Decimal reference

Named Entity &Ucaron;

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01D3";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01D3;</p>
<p>Symbol (decimal): &#467;</p>
<p>Symbol (named): &Ucaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase U caron (Ǔ) and the named entity &Ucaron; are supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase U caron (Ǔ) in language and content contexts:

Large glyphǓ
PinyinNǓ (女), MǓ (母), LǓ (鲁)
Case pairǓ (uppercase) / ǔ (lowercase)
PhoneticThird tone: Ǔ marks a caron (ˇ) over U
Named entity&Ucaron; renders as Ǔ
Not the same asplain U (U+0055)  |  Ú (u acute)  |  Ŭ (u breve)  |  Ü (u diaeresis)
Numeric refs&#x01D3; &#467; &Ucaron; \01D3

🧠 How It Works

1

Hexadecimal Code

&#x01D3; uses the Unicode hexadecimal value 01D3 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#467; uses the decimal Unicode value 467 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

Named Entity

&Ucaron; is the standard named entity for Ǔ—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\01D3 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

🇨🇳 Hanyu Pinyin

Capitalized third-tone syllables such as NǓ, MǓ, and LǓ in titles and headings.

📚 Language learning

Chinese courses, textbooks, and apps teaching tone marks in romanization.

🔤 Linguistics & phonetics

Phonetic transcription and linguistic descriptions using the caron diacritic.

📝 Transliteration

Romanization systems and dictionaries requiring extended Latin characters.

📄 Publishing

Academic and scholarly publications with correct tone-marked romanization.

🎨 Typography

Headlines and styled text requiring the caron diacritical mark.

🔍 Character reference

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 U when Ǔ 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 \01D3 in HTML text nodes
  • Omit UTF-8 encoding on pages with extended Latin characters

Key Takeaways

1

Four references render Ǔ; named entity is most readable

&#x01D3; &#467; &Ucaron;
2

For CSS stylesheets, use the escape in the content property

\01D3
3

Unicode U+01D3 — LATIN CAPITAL LETTER U WITH CARON

4

Lowercase pair is U+01D4 (ǔ, &ucaron;)

❓ Frequently Asked Questions

Use &Ucaron; (named), &#x01D3; (hex), &#467; (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.
In capitalized Pinyin romanization, Chinese language learning materials, dictionaries, linguistic notation, transliteration systems, and typography that requires the caron diacritical mark over U.
HTML code (&#467; or &#x01D3;) 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.
Yes. The named HTML entity is &Ucaron;. It is part of the HTML5 entity set and is well supported. You can also use &#467; or &#x01D3; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

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