Latin Small Letter E With Dot Above

ė

Shortcodes

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

Unicode
U+0117
HTML Code
ė
HEX Code
ė
CSS Code
\0117
JS/JSON
\u0117
Unix/C/PHP/JAVA
0x117
URL-encode
%C4%97

Customize Latin Small Letter E With Dot Above

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

ė
  

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

Insert in HTML

1. Direct symbol:
<span>ė</span>
HTML Code:
<span>&#279;</span>
HEX Code:
<span>&#x0117;</span>

Add with CSS

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

Set it in JavaScript

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