HTML Entity for Uppercase I Circumflex (Î)

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

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

Unicode U+00CE

Latin-1 Supplement

Hex Code Î

Hexadecimal reference

HTML Code Î

Decimal reference

Named Entity Î

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00CE";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xCE;</p>
<p>Symbol (decimal): &#206;</p>
<p>Symbol (named): &Icirc;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase I circumflex (Î) and the named entity &Icirc; are supported in all modern browsers:

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

👀 Live Preview

See the uppercase I circumflex (Î) in French and Romanian contexts:

Large glyphÎ
CircumflexÎ marks a circumflex (ˆ) over I
Case pairÎ (uppercase) / î (lowercase, &icirc;)
FrenchÎle (island) when capitalized at sentence start
Named entity&Icirc; renders as Î
Numeric refs&#xCE; &#206; &Icirc; \00CE

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#206; uses the decimal Unicode value 206 to display the same character. One of the most commonly used methods for Latin-1 characters.

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\00CE 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+00CE sits in Latin-1 Supplement. Lowercase equivalent: U+00EE (&icirc;). Do not confuse with plain I (U+0049), acute &Iacute; (Í), or caron &Icaron; (Ǐ).

Use Cases

The uppercase I circumflex (Î) is commonly used in:

🇫🇷 French content

Websites, documents, and apps requiring proper French spelling with circumflex accents.

🇬🇧 Romanian content

Educational materials and Romanian-language sites with accurate diacritic representation.

📝 Proper names

Personal and place names containing Î when capitalized at sentence boundaries.

📄 Academic publishing

Scholarly papers and linguistic documentation discussing French or Romanian text.

🌐 Multilingual websites

Internationalized sites serving French- or Romanian-speaking audiences.

📚 Language learning

Courses and apps teaching French, Romanian, or circumflex diacritics.

🔍 Search & SEO

Correct rendering so users can find content with proper diacritic spelling.

💡 Best Practices

Do

  • Use &Icirc; 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" or lang="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 I when Î is required for correct spelling
  • Confuse circumflex Î with acute Í or caron Ǐ
  • Put CSS escape \00CE in HTML text nodes
  • Use padded Unicode notation like U+000CE—the correct value is U+00CE
  • Use \000CE in CSS—the correct escape is \00CE

Key Takeaways

1

Four references render Î; named entity is most readable

&#xCE; &#206; &Icirc;
2

For CSS stylesheets, use the escape in the content property

\00CE
3

Unicode U+00CE — LATIN CAPITAL LETTER I WITH CIRCUMFLEX

4

Essential for French, Romanian, and multilingual i18n content

❓ Frequently Asked Questions

Use &Icirc; (named), &#xCE; (hex), &#206; (decimal), or \00CE in CSS content. The named entity &Icirc; 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.
When writing French and Romanian text, proper names, academic publications, multilingual websites, language learning materials, and any content requiring accurate circumflex diacritic representation.
HTML code (&#206; or &#xCE;) or the named entity &Icirc; 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.
Primarily French and Romanian. In French it appears in capitalized words like Île (island); in Romanian in words like Început (beginning) when capitalized. The circumflex indicates pronunciation and can distinguish word meanings in these languages.

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