Latin Small Letter E With Inverted Breve

ȇ

Shortcodes

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

Unicode
U+0207
HTML Code
ȇ
HEX Code
ȇ
CSS Code
\0207
JS/JSON
\u0207
Unix/C/PHP/JAVA
0x207
URL-encode
%C8%87

Customize Latin Small Letter E With Inverted Breve

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

ȇ
  

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

Insert in HTML

1. Direct symbol:
<span>ȇ</span>
HTML Code:
<span>&#519;</span>
HEX Code:
<span>&#x0207;</span>

Add with CSS

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

Set it in JavaScript

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