Modifier Letter Small Iota

Shortcodes

Copy useful codes for modifier letter small iota symbol ᶥ to use in websites, apps, blogs, and docs.

Unicode
U+1DA5
HTML Code
ᶥ
HEX Code
ᶥ
CSS Code
\1DA5
JS/JSON
\u1DA5
Unix/C/PHP/JAVA
0x1DA5
URL-encode
%E1%B6%A5

Customize Modifier Letter Small Iota

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᶥ</span>
HTML Code:
<span>&#7589;</span>
HEX Code:
<span>&#x1DA5;</span>

Add with CSS

.modifier-letter-small-iota::before {
  content: '\\1DA5';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-iota').textContent = 'ᶥ';
copied