Latin Small Letter I With Circumflex

î

Shortcodes

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

Unicode
U+00EE
Alt Code
238
HTML Code
î
HTML Entity
î
HEX Code
î
CSS Code
\00EE
JS/JSON
\u00EE
Unix/C/PHP/JAVA
0xEE
URL-encode
%C3%AE

Customize Latin Small Letter I With Circumflex

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

î
  

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

Insert in HTML

1. Direct symbol:
<span>î</span>
HTML Code:
<span>&#238;</span>
HTML Entity:
<span>&icirc;</span>
HEX Code:
<span>&#x00EE;</span>

Add with CSS

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

Set it in JavaScript

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