Latin Letter Small Capital E

Shortcodes

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

Unicode
U+1D07
HTML Code
ᴇ
HEX Code
ᴇ
CSS Code
\1D07
JS/JSON
\u1D07
Unix/C/PHP/JAVA
0x1D07
URL-encode
%E1%B4%87

Customize Latin Letter Small Capital E

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴇ</span>
HTML Code:
<span>&#7431;</span>
HEX Code:
<span>&#x1D07;</span>

Add with CSS

.latin-letter-small-capital-e::before {
  content: '\\1D07';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-e').textContent = 'ᴇ';
copied