Latin Letter Small Capital I

ɪ

Shortcodes

Copy useful codes for latin letter small capital i symbol ɪ to use in websites, apps, blogs, and docs.

Unicode
U+026A
HTML Code
ɪ
HEX Code
ɪ
CSS Code
\026A
JS/JSON
\u026A
Unix/C/PHP/JAVA
0x26A
URL-encode
%C9%AA

Customize Latin Letter Small Capital I

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

ɪ
  

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

Insert in HTML

1. Direct symbol:
<span>ɪ</span>
HTML Code:
<span>&#618;</span>
HEX Code:
<span>&#x026A;</span>

Add with CSS

.latin-letter-small-capital-i::before {
  content: '\\026A';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-i').textContent = 'ɪ';
copied