Latin Capital Letter E With Dot Above

Ė

Shortcodes

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

Unicode
U+0116
HTML Code
Ė
HEX Code
Ė
CSS Code
\0116
JS/JSON
\u0116
Unix/C/PHP/JAVA
0x116
URL-encode
%C4%96

Customize Latin Capital Letter E With Dot Above

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

Ė
  

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

Insert in HTML

1. Direct symbol:
<span>Ė</span>
HTML Code:
<span>&#278;</span>
HEX Code:
<span>&#x0116;</span>

Add with CSS

.latin-capital-letter-e-with-dot-above::before {
  content: '\\0116';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-e-with-dot-above').textContent = 'Ė';
copied