HTML Entity for Uppercase I Grave (Ì)

What You'll Learn
How to display the uppercase I with grave accent (Ì) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The grave accent slopes downward from left to right. This character is U+00CC in the Latin-1 Supplement block and appears in Italian, French, and other languages.
Render it with Ì, Ì, Ì, or CSS escape \CC. The named entity Ì is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase I Grave Entity
U+00CCLatin-1 Supplement
ÌHexadecimal reference
ÌDecimal reference
ÌMost readable option
Name Value
──────────── ──────────
Unicode U+00CC
Hex code Ì
HTML code Ì
Named entity Ì
CSS code \CC
Meaning Latin capital letter I with grave
Related U+00EC = ì (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase I grave (Ì) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\CC";
}
</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 grave (Ì) and the named entity Ì are universally supported in modern browsers:
👀 Live Preview
See the uppercase I grave (Ì) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ì uses the Unicode hexadecimal value CC to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ì uses the decimal Unicode value 204 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
\CC 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+00CC sits in Latin-1 Supplement. Lowercase equivalent: U+00EC (ì). Do not confuse with Í (acute), Ȉ (double grave), or plain I (U+0049).
Use Cases
The uppercase I grave (Ì) is commonly used in:
Websites and documents requiring proper Italian spelling with grave accents on capital I.
French-language sites, educational materials, and proper names with grave-accented I.
Personal and place names containing Ì when capitalized.
Scholarly papers and linguistic documentation discussing Italian or French text.
Internationalized sites serving Italian- or French-speaking audiences.
Courses and dictionaries teaching grave-accented letters in Romance languages.
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="it"orlang="fr") for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish Ì (grave) from Í (acute) and Ȉ (double grave)
Don’t
- Substitute plain
Iwhen Ì is required for correct spelling - Confuse Ì (grave) with Í (acute)—meaning can change in some languages
- Put CSS escape
\CCin HTML text nodes - Use padded Unicode notation like U+000CC—the correct value is
U+00CC - Use
\000CCin CSS—the correct escape is\CC
Key Takeaways
Four references render Ì; named entity is most readable
Ì Ì ÌFor CSS stylesheets, use the escape in the content property
\CCUnicode U+00CC — LATIN CAPITAL LETTER I WITH GRAVE
Essential for Italian, French, and multilingual i18n content
Previous: Uppercase I Double Grave (Ȉ) Next: Uppercase I Inverted Breve
❓ Frequently Asked Questions
Ì (named), Ì (hex), Ì (decimal), or \CC in CSS content. The named entity Ì is the most readable for HTML content.U+00CC (LATIN CAPITAL LETTER I WITH GRAVE). Latin-1 Supplement block. Hex CC, decimal 204. Used in Italian, French, and other languages.Ì or Ì) or the named entity Ì is used in HTML content. The CSS entity (\CC) 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
