Modifier Letter Small E

Shortcodes

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

Unicode
U+1D49
HTML Code
ᵉ
HEX Code
ᵉ
CSS Code
\1D49
JS/JSON
\u1D49
Unix/C/PHP/JAVA
0x1D49
URL-encode
%E1%B5%89

Customize Modifier Letter Small E

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵉ</span>
HTML Code:
<span>&#7497;</span>
HEX Code:
<span>&#x1D49;</span>

Add with CSS

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

Set it in JavaScript

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