Double-struck Italic Small E

Shortcodes

Copy useful codes for double-struck italic small e symbol ⅇ to use in websites, apps, blogs, and docs.

Unicode
U+2147
HTML Code
ⅇ
HEX Code
ⅇ
CSS Code
\2147
JS/JSON
\u2147
Unix/C/PHP/JAVA
0x2147
URL-encode
%E2%85%87

Customize Double-struck Italic Small E

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

  

How to use Double-struck Italic Small E Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ⅇ</span>
HTML Code:
<span>&#8519;</span>
HEX Code:
<span>&#x2147;</span>

Add with CSS

.double-struck-italic-small-e::before {
  content: '\\2147';
}

Set it in JavaScript

document.querySelector('.double-struck-italic-small-e').textContent = 'ⅇ';
copied