Latin Small Letter E With Grave

è

Shortcodes

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

Unicode
U+00E8
Alt Code
232
HTML Code
è
HTML Entity
è
HEX Code
è
CSS Code
\00E8
JS/JSON
\u00E8
Unix/C/PHP/JAVA
0xE8
URL-encode
%C3%A8

Customize Latin Small Letter E With Grave

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

è
  

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

Insert in HTML

1. Direct symbol:
<span>è</span>
HTML Code:
<span>&#232;</span>
HTML Entity:
<span>&egrave;</span>
HEX Code:
<span>&#x00E8;</span>

Add with CSS

.latin-small-letter-e-with-grave::before {
  content: '\\00E8';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-e-with-grave').textContent = 'è';
copied