HTML Entity for Uppercase U Inverted Breve (Ȗ)

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

What You'll Learn

How to display the uppercase U with inverted breve (Ȗ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0216 in the Latin Extended-B block. It combines the letter U with an inverted breve (rounded diacritic above the letter) and appears in Slavicist phonology, IPA-style notation, and linguistic transcription.

Render it with Ȗ, Ȗ, or CSS escape \0216. There is no named HTML entity for this character. In UTF-8 documents you can also type Ȗ directly.

⚡ Quick Reference — Uppercase U Inverted Breve Entity

Unicode U+0216

Latin Extended-B

Hex Code Ȗ

Hexadecimal reference

HTML Code Ȗ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0216
Hex code       Ȗ
HTML code      Ȗ
Named entity   (none)
CSS code       \0216
Meaning        Latin capital letter U with inverted breve
Related        U+0217 = ȗ (lowercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase U inverted breve (Ȗ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0216";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0216;</p>
<p>Symbol (decimal): &#534;</p>
<p>Symbol (direct): Ȗ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase U inverted breve (Ȗ) is supported in all modern browsers as part of Latin Extended-B:

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

👀 Live Preview

See the uppercase U inverted breve (Ȗ) in notation and content contexts:

Large glyphȖ
LinguisticsSlavicist phonology and IPA-style notation using U with inverted breve
Case pairȖ (uppercase) / ȗ (lowercase)
Unicode nameLatin capital letter U with inverted breve
Not the same asŬ (u with breve)  |  plain U (U+0055)  |  Ȕ (double grave)
Numeric refs&#x0216; &#534; \0216

🧠 How It Works

1

Hexadecimal Code

&#x0216; uses the Unicode hexadecimal value 0216 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#534; uses the decimal Unicode value 534 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type Ȗ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this precomposed letter.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: Ȗ. Unicode U+0216 sits in Latin Extended-B. Lowercase equivalent: U+0217 (ȗ). Do not confuse with Ŭ (u with breve) or plain U.

Use Cases

The uppercase U inverted breve (Ȗ) is commonly used in:

📝 Linguistics & Phonology

Phonetic transcription and Slavicist notation using U with inverted breve marking in capital form.

🎤 IPA Notation

Academic and dictionary content requiring extended Latin characters for phonetic description.

🌐 Transliteration

Romanization systems and linguistic charts requiring precomposed inverted-breve letters.

📚 Language Learning

Courses and reference materials covering extended Latin alphabets and diacritic notation.

📄 Academic Content

Papers, character charts, and language resources requiring precise precomposed character representation.

🛠 Typography

Specialized typography and character-set documentation for extended Latin letters.

⚙ Programmatic HTML

When building HTML from linguistic data, using &#534; or &#x0216; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ȗ directly in UTF-8 source
  • Use numeric references (&#x0216; or &#534;) when escaping is required
  • Use \0216 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters (U+0180–U+024F)
  • Distinguish inverted breve (Ȗ) from regular breve (Ŭ) in linguistic notation

Don’t

  • Confuse Ȗ with Ŭ (u with breve) or plain U when the inverted breve is required
  • Expect a named HTML entity—none exists for Ȗ
  • Use the old incorrect CSS escape \00216—the correct value is \0216
  • Put CSS escape \0216 in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type Ȗ directly, or use hex/decimal references

&#x0216; &#534;
2

For CSS stylesheets, use the escape in the content property

\0216
3

Unicode U+0216 — LATIN CAPITAL LETTER U WITH INVERTED BREVE

4

Slavicist phonology / IPA notation; lowercase is ȗ (U+0217)

❓ Frequently Asked Questions

Use &#x0216; (hex), &#534; (decimal), or \0216 in CSS content. There is no named HTML entity for Ȗ. In UTF-8 you can also type Ȗ directly.
U+0216 (LATIN CAPITAL LETTER U WITH INVERTED BREVE). Latin Extended-B block. Hex 0216, decimal 534. Used in Slavicist phonology and IPA notation. Lowercase form is U+0217 (ȗ).
When displaying linguistic notation, phonetic transcription, Slavicist orthography, academic papers, or any content requiring the capital U with inverted breve diacritic.
No. There is no named HTML entity for Ȗ. Use numeric codes &#534; or &#x0216;, or the CSS entity \0216. Do not confuse with Ŭ (u with breve) or plain U (U+0055).
HTML code (&#534; or &#x0216;) is used in HTML content; CSS entity \0216 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.

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