Latin Capital Letter E With Breve

Ĕ

Shortcodes

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

Unicode
U+0114
HTML Code
Ĕ
HEX Code
Ĕ
CSS Code
\0114
JS/JSON
\u0114
Unix/C/PHP/JAVA
0x114
URL-encode
%C4%94

Customize Latin Capital Letter E With Breve

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

Ĕ
  

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

Insert in HTML

1. Direct symbol:
<span>Ĕ</span>
HTML Code:
<span>&#276;</span>
HEX Code:
<span>&#x0114;</span>

Add with CSS

.latin-capital-letter-e-with-breve::before {
  content: '\\0114';
}

Set it in JavaScript

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