HTML Entity for Lowercase U Circumflex (û)

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
U+00FBLatin-1 Supplement
ûHexadecimal reference
ûDecimal reference
ûMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00FB";
}
</style>
</head>
<body>
<p>Symbol (hex): û</p>
<p>Symbol (decimal): û</p>
<p>Symbol (named): û</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase u circumflex (û) and the named entity û are supported in all modern browsers:
👀 Live Preview
See the lowercase u circumflex (û) in language and content contexts:
🧠 How It Works
Hexadecimal Code
û uses the Unicode hexadecimal value 00FB to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
û uses the decimal Unicode value 251 to display the same character. A common method when a numeric reference is needed.
Named Entity
û is the named entity for u circumflex—readable in source HTML and widely used for French and Kurdish content.
CSS Entity
\00FB 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+00FB sits in Latin-1 Supplement. Uppercase equivalent: U+00DB (Û, Û). Do not confuse with ú (acute), ù (grave), or ü (diaeresis).
Use Cases
The lowercase u circumflex (û) is commonly used in:
Essential for correct spelling in words like sûr, dû, and jeûne. The circumflex often marks a historical omitted letter such as s.
û is a distinct vowel in Kurdish Latin orthography and appears in native words and place names.
Dictionaries, place names, product localization, and any content requiring proper accented characters.
French and Kurdish courses, textbooks, and glossaries showing correct spelling with û.
Using the correct character (U+00FB) with proper lang attributes ensures assistive technologies pronounce content correctly.
Phonetic transcription and linguistic descriptions using the circumflex diacritic over u.
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
ûfor readable HTML when a named form is preferred - Set
langattributes (e.g.lang="fr",lang="ku") on language-specific content - Use
\00FBin CSScontentwhen generating the symbol via pseudo-elements - Distinguish û (circumflex) from ú (acute), ù (grave), and ü (diaeresis)
Don’t
- Substitute plain
uwhen û 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
\00FBin HTML text nodes - Double-encode entity references in dynamically generated HTML
Key Takeaways
The named entity is the most familiar form
ûNumeric alternatives: hex and decimal
û ûUnicode U+00FB — LATIN SMALL LETTER U WITH CIRCUMFLEX
Essential for French and Kurdish; uppercase is Û (Û)
Previous: Lowercase U Caron (ǔ) Next: Lowercase U Diaeresis Acute
❓ Frequently Asked Questions
û (named), û (hex), û (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 (Û).û. You can also use û or û, or the CSS entity \00FB.û is a named entity and is more readable; û 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.
8 people found this page helpful
