HTML Entity for Uppercase I Circumflex (Î)

What You'll Learn
How to display the uppercase I with circumflex (Î) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00CE in the Latin-1 Supplement block. The circumflex is a V-shaped diacritic placed above a letter, used in French, Romanian, and other languages.
Render it with Î, Î, Î, or CSS escape \00CE. The named entity Î is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase I Circumflex Entity
U+00CELatin-1 Supplement
ÎHexadecimal reference
ÎDecimal reference
ÎMost readable option
Name Value
──────────── ──────────
Unicode U+00CE
Hex code Î
HTML code Î
Named entity Î
CSS code \00CE
Meaning Latin capital letter I with circumflex
Related U+00EE = î (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase I circumflex (Î) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00CE";
}
</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 uppercase I circumflex (Î) and the named entity Î are supported in all modern browsers:
👀 Live Preview
See the uppercase I circumflex (Î) in French and Romanian contexts:
î)🧠 How It Works
Hexadecimal Code
Î uses the Unicode hexadecimal value CE to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Î uses the decimal Unicode value 206 to display the same character. One of the most commonly used methods for Latin-1 characters.
Named Entity
Πis the standard named entity for Ηreadable in source HTML and part of the HTML Latin-1 entity set.
CSS Entity
\00CE 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+00CE sits in Latin-1 Supplement. Lowercase equivalent: U+00EE (î). Do not confuse with plain I (U+0049), acute Í (Í), or caron &Icaron; (Ǐ).
Use Cases
The uppercase I circumflex (Î) is commonly used in:
Websites, documents, and apps requiring proper French spelling with circumflex accents.
Educational materials and Romanian-language sites with accurate diacritic representation.
Personal and place names containing Î when capitalized at sentence boundaries.
Scholarly papers and linguistic documentation discussing French or Romanian text.
Internationalized sites serving French- or Romanian-speaking audiences.
Courses and apps teaching French, Romanian, or circumflex diacritics.
Correct rendering so users can find content with proper diacritic spelling.
💡 Best Practices
Do
- Use
Îin HTML when possible for readability - Serve pages as UTF-8; you can also type Î directly in UTF-8 source
- Set
langattributes (e.g.lang="fr"orlang="ro") for correct pronunciation - Use fonts that support Latin-1 Supplement (U+0080–U+00FF)
- Distinguish Î (circumflex) from Í (acute) and Ǐ (caron)
Don’t
- Substitute plain
Iwhen Î is required for correct spelling - Confuse circumflex Î with acute Í or caron Ǐ
- Put CSS escape
\00CEin HTML text nodes - Use padded Unicode notation like U+000CE—the correct value is
U+00CE - Use
\000CEin CSS—the correct escape is\00CE
Key Takeaways
Four references render Î; named entity is most readable
Î Î ÎFor CSS stylesheets, use the escape in the content property
\00CEUnicode U+00CE — LATIN CAPITAL LETTER I WITH CIRCUMFLEX
Essential for French, Romanian, and multilingual i18n content
Previous: Uppercase I Caron Next: Uppercase I Dot Above
❓ Frequently Asked Questions
Î (named), Î (hex), Î (decimal), or \00CE in CSS content. The named entity Î is the most readable for HTML content.U+00CE (LATIN CAPITAL LETTER I WITH CIRCUMFLEX). Latin-1 Supplement block. Hex CE, decimal 206. Used in French, Romanian, and other languages with circumflex diacritics.Î or Î) or the named entity Î is used in HTML content. The CSS entity (\00CE) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Î but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
