Latin Capital Letter I With Circumflex

Î

Shortcodes

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

Unicode
U+00CE
Alt Code
206
HTML Code
Î
HTML Entity
Î
HEX Code
Î
CSS Code
\00CE
JS/JSON
\u00CE
Unix/C/PHP/JAVA
0xCE
URL-encode
%C3%8E

Customize Latin Capital Letter I With Circumflex

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

Î
  

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

Insert in HTML

1. Direct symbol:
<span>Î</span>
HTML Code:
<span>&#206;</span>
HTML Entity:
<span>&Icirc;</span>
HEX Code:
<span>&#x00CE;</span>

Add with CSS

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

Set it in JavaScript

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