Modifier Letter Small Capital I

Shortcodes

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

Unicode
U+1DA6
HTML Code
ᶦ
HEX Code
ᶦ
CSS Code
\1DA6
JS/JSON
\u1DA6
Unix/C/PHP/JAVA
0x1DA6
URL-encode
%E1%B6%A6

Customize Modifier Letter Small Capital I

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᶦ</span>
HTML Code:
<span>&#7590;</span>
HEX Code:
<span>&#x1DA6;</span>

Add with CSS

.modifier-letter-small-capital-i::before {
  content: '\\1DA6';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-capital-i').textContent = 'ᶦ';
copied