HTML Entity for Lowercase U Circumflex (û)

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

What You'll Learn

How to display the lowercase u with circumflex (û) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00FB in the Latin-1 Supplement block. The circumflex (^) diacritic appears in French (sûr, dû), Kurdish, and other orthographies.

Render it with û, û, û, or CSS escape \00FB. The named entity û is a readable and widely supported HTML character reference.

⚡ Quick Reference — Lowercase U Circumflex Entity

Unicode U+00FB

Latin-1 Supplement

Hex Code û

Hexadecimal reference

HTML Code û

Decimal reference

Named Entity û

Most readable option

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

Complete HTML Example

A simple example showing the lowercase 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: "\00FB";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x00FB;</p>
<p>Symbol (decimal): &#251;</p>
<p>Symbol (named): &ucirc;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase u circumflex (û) and the named entity &ucirc; are supported in all modern browsers:

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

👀 Live Preview

See the lowercase u circumflex (û) in language and content contexts:

Large glyphû
Frenchsûr  |  dû  |  jeûne
Kurdishû (distinct vowel in Kurdish Latin script)
Named entity&ucirc; renders as û
UppercaseÛ (U+00DB) — use &Ucirc;
Not the same asú (acute)  |  ù (grave)  |  ü (diaeresis)  |  u (plain)
Numeric refs&#x00FB; &#251; &ucirc; \00FB

🧠 How It Works

1

Hexadecimal Code

&#x00FB; uses the Unicode hexadecimal value 00FB to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&ucirc; is the named entity for u circumflex—readable in source HTML and widely used for French and Kurdish content.

HTML markup
4

CSS Entity

\00FB 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+00FB sits in Latin-1 Supplement. Uppercase equivalent: U+00DB (Û, &Ucirc;). Do not confuse with ú (acute), ù (grave), or ü (diaeresis).

Use Cases

The lowercase u circumflex (û) is commonly used in:

🇫🇷 French

Essential for correct spelling in 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.

🌐 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+00FB) 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 \00FB in the CSS content property to insert û via pseudo-elements.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type û directly in UTF-8 source
  • Use &ucirc; for readable HTML when a named form is preferred
  • Set lang attributes (e.g. lang="fr", lang="ku") on language-specific content
  • Use \00FB in CSS content when generating the symbol via pseudo-elements
  • 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
  • Use the old incorrect CSS escape \000FB—the correct value is \00FB
  • Put CSS escape \00FB in HTML text nodes
  • Double-encode entity references in dynamically generated HTML

Key Takeaways

1

The named entity is the most familiar form

&ucirc;
2

Numeric alternatives: hex and decimal

&#x00FB; &#251;
3

Unicode U+00FB — LATIN SMALL LETTER U WITH CIRCUMFLEX

4

Essential for French and Kurdish; uppercase is Û (&Ucirc;)

❓ Frequently Asked Questions

Use &ucirc; (named), &#x00FB; (hex), &#251; (decimal), or \00FB in CSS content. In UTF-8 you can also type û directly.
U+00FB (LATIN SMALL LETTER U WITH CIRCUMFLEX). Latin-1 Supplement block. Hex 00FB, decimal 251. Used in French, Kurdish, and other languages. Uppercase form is U+00DB (Û).
When displaying French, Kurdish, or other language text that uses û, in multilingual sites, documentation, or when you need a reliable character reference. In UTF-8 pages you can type û directly.
The named HTML entity is &ucirc;. You can also use &#251; or &#x00FB;, or the CSS entity \00FB.
Both produce the same character (û). &ucirc; is a named entity and is more readable; &#251; is the decimal numeric character reference. Use whichever fits your project’s style.

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