Latin Small Letter E With Breve

ĕ

Shortcodes

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

Unicode
U+0115
HTML Code
ĕ
HEX Code
ĕ
CSS Code
\0115
JS/JSON
\u0115
Unix/C/PHP/JAVA
0x115
URL-encode
%C4%95

Customize Latin Small Letter E With Breve

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

ĕ
  

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

Insert in HTML

1. Direct symbol:
<span>ĕ</span>
HTML Code:
<span>&#277;</span>
HEX Code:
<span>&#x0115;</span>

Add with CSS

.latin-small-letter-e-with-breve::before {
  content: '\\0115';
}

Set it in JavaScript

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