Latin Small Letter I With Macron

ī

Shortcodes

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

Unicode
U+012B
HTML Code
ī
HEX Code
ī
CSS Code
\012B
JS/JSON
\u012B
Unix/C/PHP/JAVA
0x12B
URL-encode
%C4%AB

Customize Latin Small Letter I With Macron

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

ī
  

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

Insert in HTML

1. Direct symbol:
<span>ī</span>
HTML Code:
<span>&#299;</span>
HEX Code:
<span>&#x012B;</span>

Add with CSS

.latin-small-letter-i-with-macron::before {
  content: '\\012B';
}

Set it in JavaScript

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