Greek Capital Letter Epsilon

Ε

Shortcodes

Copy useful codes for greek capital letter epsilon symbol Ε to use in websites, apps, blogs, and docs.

Unicode
U+0395
HTML Code
Ε
HTML Entity
Ε
HEX Code
Ε
CSS Code
\0395
JS/JSON
\u0395
Unix/C/PHP/JAVA
0x0395
URL-encode
%CE%95

Customize Greek Capital Letter Epsilon

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

Ε
  

How to use Greek Capital Letter Epsilon Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ε</span>
HTML Code:
<span>&#917;</span>
HTML Entity:
<span>&Epsilon;</span>
HEX Code:
<span>&#x395;</span>

Add with CSS

.greek-capital-letter-epsilon::before {
  content: '\\0395';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-epsilon').textContent = 'Ε';
copied