HTML Entity for Uppercase U Circumflex (Û)

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

What You'll Learn

How to display the uppercase U with circumflex (Û) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00DB in the Latin-1 Supplement block. The circumflex (^) diacritic appears in French (sûr, dû) and Kurdish orthography when capitalized.

Render it with Û, Û, Û, or CSS escape \00DB. The named entity Û is often the most readable option in HTML source.

⚡ Quick Reference — Uppercase U Circumflex Entity

Unicode U+00DB

Latin-1 Supplement

Hex Code Û

Hexadecimal reference

HTML Code Û

Decimal reference

Named Entity Û

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00DB
Hex code       Û
HTML code      Û
Named entity   Û
CSS code       \00DB
Meaning        Latin capital letter U with circumflex
Related        U+00FB = û (lowercase)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing the uppercase U circumflex (Û) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00DB";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xDB;</p>
<p>Symbol (decimal): &#219;</p>
<p>Symbol (named): &Ucirc;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase U circumflex (Û) and the named entity &Ucirc; are universally supported in modern browsers:

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

👀 Live Preview

See the uppercase U circumflex (Û) in language and content contexts:

Large glyphÛ
FrenchSÛR  |  DÛ  |  JEÛNE
KurdishÛ (distinct vowel in Kurdish Latin script)
Case pairÛ (uppercase) / û (lowercase)
Named entity&Ucirc; renders as Û
Not the same asplain U (U+0055)  |  Ú (acute)  |  Ù (grave)  |  Ü (diaeresis)
Numeric refs&#xDB; &#219; &Ucirc; \00DB

🧠 How It Works

1

Named Entity

&Ucirc; is the standard named entity for Û—readable in source HTML and part of the HTML Latin-1 entity set.

HTML markup
2

Hexadecimal Code

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

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\00DB 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+00DB sits in Latin-1 Supplement. Lowercase equivalent: U+00FB (&ucirc;). Do not confuse with plain U (U+0055), Ú (acute), Ù (grave), or Ü (diaeresis).

Use Cases

The uppercase U circumflex (Û) is commonly used in:

🇫🇷 French

Capitalized words like SÛR, DÛ, and JEÛNE. The circumflex often marks a historical omitted letter such as s.

🇰🇿 Kurdish

Û is a distinct vowel in Kurdish Latin orthography and appears in native words and place names when capitalized.

🌐 Multilingual Sites

Dictionaries, place names, product localization, and any content requiring proper accented characters.

📚 Language Learning

French and Kurdish courses, textbooks, and glossaries showing correct spelling with Û.

♿ Accessibility

Using the correct character (U+00DB) with proper lang attributes ensures assistive technologies pronounce content correctly.

🔤 Linguistics

Phonetic transcription and linguistic descriptions using the circumflex diacritic over U.

🎨 CSS Generated Content

Using \00DB in the CSS content property to insert Û via pseudo-elements.

💡 Best Practices

Do

  • Use &Ucirc; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Û directly in UTF-8 source
  • Set lang attributes (e.g. lang="fr", lang="ku") on language-specific content
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish Û (circumflex) from Ú (acute), Ù (grave), and Ü (diaeresis)

Don’t

  • Substitute plain U when Û is required in French or Kurdish text
  • Confuse Û (circumflex) with Ú (acute), Ù (grave), Ü (diaeresis), or plain U
  • Put CSS escape \00DB in HTML text nodes
  • Use the old incorrect CSS escape \000DB—the correct value is \00DB
  • Double-encode entity references in dynamically generated HTML

Key Takeaways

1

Four references render Û; named entity is most readable

&#xDB; &#219; &Ucirc;
2

For CSS stylesheets, use the escape in the content property

\00DB
3

Unicode U+00DB — LATIN CAPITAL LETTER U WITH CIRCUMFLEX

4

Lowercase pair is U+00FB (û, &ucirc;)

❓ Frequently Asked Questions

Use &Ucirc; (named), &#xDB; (hex), &#219; (decimal), or \00DB in CSS content. The named entity &Ucirc; is the most readable for HTML content.
U+00DB (LATIN CAPITAL LETTER U WITH CIRCUMFLEX). Latin-1 Supplement block. Hex DB, decimal 219. Used in French, Kurdish, and other languages. Lowercase form is U+00FB (û).
When displaying French or Kurdish text at sentence or word boundaries, multilingual websites, proper names, academic papers, and any content requiring the U with circumflex diacritic.
HTML code (&#219; or &#xDB;) or the named entity &Ucirc; is used in HTML content. The CSS entity (\00DB) 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 &Ucirc;. It is part of the standard HTML Latin-1 entity set and is well supported. You can also use &#219; or &#xDB; 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