Latin Capital Letter I With Grave

Ì

Shortcodes

Copy useful codes for latin capital letter i with grave symbol Ì to use in websites, apps, blogs, and docs.

Unicode
U+00CC
Alt Code
204
HTML Code
Ì
HTML Entity
Ì
HEX Code
Ì
CSS Code
\00CC
JS/JSON
\u00CC
Unix/C/PHP/JAVA
0xCC
URL-encode
%C3%8C

Customize Latin Capital Letter I With Grave

Customize Ì, download it as SVG or PNG, or copy the generated HTML snippet.

Ì
  

How to use Latin Capital Letter I With Grave Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ì</span>
HTML Code:
<span>&#204;</span>
HTML Entity:
<span>&Igrave;</span>
HEX Code:
<span>&#x00CC;</span>

Add with CSS

.latin-capital-letter-i-with-grave::before {
  content: '\\00CC';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-i-with-grave').textContent = 'Ì';
copied