Latin Capital Letter E With Macron

Ē

Shortcodes

Copy useful codes for latin capital letter e with macron symbol Ē to use in websites, apps, blogs, and docs.

Unicode
U+0112
HTML Code
Ē
HEX Code
Ē
CSS Code
\0112
JS/JSON
\u0112
Unix/C/PHP/JAVA
0x112
URL-encode
%C4%92

Customize Latin Capital Letter E With Macron

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

Ē
  

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

Insert in HTML

1. Direct symbol:
<span>Ē</span>
HTML Code:
<span>&#274;</span>
HEX Code:
<span>&#x0112;</span>

Add with CSS

.latin-capital-letter-e-with-macron::before {
  content: '\\0112';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-e-with-macron').textContent = 'Ē';
copied