Mathematical Italic Small E

๐‘’

Shortcodes

Copy useful codes for mathematical italic small e symbol ๐‘’ to use in websites, apps, blogs, and docs.

Unicode
U+1D452
HTML Code
𝑒
HEX Code
𝑒
CSS Code
\1D452
JS/JSON
\u1D452
Unix/C/PHP/JAVA
0x1D452
URL-encode
%F0%9D%91%92

Customize Mathematical Italic Small E

Customize ๐‘’, download it as SVG or PNG, or copy the generated HTML snippet.

๐‘’
  

How to use Mathematical Italic Small E Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐‘’</span>
HTML Code:
<span>&#119890;</span>
HEX Code:
<span>&#x1D452;</span>

Add with CSS

.mathematical-italic-small-e::before {
  content: '\\1D452';
}

Set it in JavaScript

document.querySelector('.mathematical-italic-small-e').textContent = '๐‘’';
copied