Latin Capital Letter Open E

Ɛ

Shortcodes

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

Unicode
U+0190
HTML Code
Ɛ
HEX Code
Ɛ
CSS Code
\0190
JS/JSON
\u0190
Unix/C/PHP/JAVA
0x190
URL-encode
%C6%90

Customize Latin Capital Letter Open E

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

Ɛ
  

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

Insert in HTML

1. Direct symbol:
<span>Ɛ</span>
HTML Code:
<span>&#400;</span>
HEX Code:
<span>&#x0190;</span>

Add with CSS

.latin-capital-letter-open-e::before {
  content: '\\0190';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-open-e').textContent = 'Ɛ';
copied