Latin Subscript Small Letter E

Shortcodes

Copy useful codes for latin subscript small letter e symbol ₑ to use in websites, apps, blogs, and docs.

Unicode
U+2091
HTML Code
ₑ
HEX Code
ₑ
CSS Code
\2091
JS/JSON
\u2091
Unix/C/PHP/JAVA
0x2091
URL-encode
%E2%82%91

Customize Latin Subscript Small Letter E

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₑ</span>
HTML Code:
<span>&#8337;</span>
HEX Code:
<span>&#x2091;</span>

Add with CSS

.latin-subscript-small-letter-e::before {
  content: '\\2091';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-e').textContent = 'ₑ';
copied