HTML Entity for Lowercase I Circumflex (î)

What You'll Learn
How to display the lowercase i with circumflex (î) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00EE in the Latin-1 Supplement block and appears in French and Romanian text, among other languages that use the circumflex diacritic.
Render it with î, î, î, or CSS escape \00EE. The named entity î is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase I Circumflex Entity
U+00EELatin-1 Supplement
îHexadecimal reference
îDecimal reference
îMost readable option
Name Value
──────────── ──────────
Unicode U+00EE
Hex code î
HTML code î
Named entity î
CSS code \00EE
Meaning Latin small letter i with circumflex
Related U+00CE = Î (uppercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase i circumflex (î) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00EE";
}
</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 i circumflex (î) and the named entity î are universally supported in modern browsers:
👀 Live Preview
See the lowercase i circumflex (î) in language and content contexts:
🧠 How It Works
Hexadecimal Code
î uses the Unicode hexadecimal value EE to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
î uses the decimal Unicode value 238 to display the same character. A common method 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
\00EE 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+00EE sits in Latin-1 Supplement. Uppercase equivalent: U+00CE (Î). It canonically decomposes to i (U+0069) + combining circumflex (U+0302). Do not confuse with acute í (í) or grave ì (ì).
Use Cases
The lowercase i circumflex (î) is commonly used in:
Used in French words and names, especially in traditional spellings and proper nouns.
î is a core letter in Romanian and appears frequently (e.g. în, început).
Lessons, flashcards, and quizzes teaching accented characters.
Transliteration systems and academic writing with diacritics.
Correctly capturing names and words in input fields and data storage.
Accurate spelling with diacritics improves clarity for readers and assistive technologies.
Proper spelling helps search indexing for French- and Romanian-language content.
💡 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
lang="fr"orlang="ro"for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish î (circumflex) from í (acute), ì (grave), and plain
i
Don’t
- Substitute plain
iwhen î is required for correct spelling - Confuse circumflex î with acute í or caron ǐ
- Put CSS escape
\00EEin HTML text nodes - Assume all fonts render Latin-1 glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render î; named entity is most readable
î î îFor CSS stylesheets, use the escape in the content property
\00EEUnicode U+00EE — LATIN SMALL LETTER I WITH CIRCUMFLEX
Essential for French, Romanian, and internationalized content
Previous: Lowercase I Caron (ǐ) Next: Lowercase I Dotless (ı)
❓ Frequently Asked Questions
î (named), î (hex), î (decimal), or \00EE in CSS content. The named entity î is the most readable for HTML content.U+00EE (LATIN SMALL LETTER I WITH CIRCUMFLEX). Latin-1 Supplement block. Hex EE, decimal 238. Used in French, Romanian, and other languages with circumflex accents.i (U+0069) followed by the combining circumflex (U+0302). Both forms are equivalent in Unicode, but the precomposed form is often simpler to use in HTML.î is often preferred for hand-authored HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
