Latin Capital Letter E With Grave

È

Shortcodes

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

Unicode
U+00C8
Alt Code
200
HTML Code
È
HTML Entity
È
HEX Code
È
CSS Code
\00C8
JS/JSON
\u00C8
Unix/C/PHP/JAVA
0xC8
URL-encode
%C3%88

Customize Latin Capital Letter E With Grave

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

È
  

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

Insert in HTML

1. Direct symbol:
<span>È</span>
HTML Code:
<span>&#200;</span>
HTML Entity:
<span>&Egrave;</span>
HEX Code:
<span>&#x00C8;</span>

Add with CSS

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

Set it in JavaScript

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