Modifier Letter Small Open E

Shortcodes

Copy useful codes for modifier letter small open e symbol ᵋ to use in websites, apps, blogs, and docs.

Unicode
U+1D4B
HTML Code
ᵋ
HEX Code
ᵋ
CSS Code
\1D4B
JS/JSON
\u1D4B
Unix/C/PHP/JAVA
0x1D4B
URL-encode
%E1%B5%8B

Customize Modifier Letter Small Open E

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵋ</span>
HTML Code:
<span>&#7499;</span>
HEX Code:
<span>&#x1D4B;</span>

Add with CSS

.modifier-letter-small-open-e::before {
  content: '\\1D4B';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-open-e').textContent = 'ᵋ';
copied