HTML Entity for Uppercase E Breve (Ĕ)

What You'll Learn
How to display the uppercase E with breve (Ĕ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0114 in the Latin Extended-A block and marks a short vowel in linguistic notation and transliteration systems.
Render it with &Ebreve;, Ĕ, Ĕ, or CSS escape \114. The named entity &Ebreve; is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase E Breve Entity
U+0114Latin Extended-A
ĔHexadecimal reference
ĔDecimal reference
&Ebreve;Most readable option
Name Value
──────────── ──────────
Unicode U+0114
Hex code Ĕ
HTML code Ĕ
Named entity &Ebreve;
CSS code \114
Meaning Latin capital letter E with breve
Related U+0115 = &ebreve; (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase E breve (Ĕ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\114";
}
</style>
</head>
<body>
<p>Symbol (hex): Ĕ</p>
<p>Symbol (decimal): Ĕ</p>
<p>Symbol (named): &Ebreve;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase E breve (Ĕ) and the named entity &Ebreve; are supported in modern browsers:
👀 Live Preview
See the uppercase E breve (Ĕ) in linguistic and content contexts:
🧠 How It Works
Hexadecimal Code
Ĕ uses the Unicode hexadecimal value 114 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ĕ uses the decimal Unicode value 276 to display the same character. A common method for Latin Extended-A characters.
Named Entity
&Ebreve; is the standard named entity for Ĕ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\114 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ĕ. Unicode U+0114 sits in Latin Extended-A. Lowercase equivalent: U+0115 (&ebreve;). Do not confuse with plain E (U+0045), acute É (É), or caron Ě (Ě).
Use Cases
The uppercase E breve (Ĕ) is commonly used in:
Phonetic transcriptions and comparative linguistics marking a short vowel with breve.
Scholarly papers, research publications, and language atlases using specialized diacritics.
Font design, character set documentation, and typographic projects with extended Latin.
Dictionaries, transliteration guides, and linguistic reference materials.
Courses and textbooks explaining breve diacritics on vowels.
Content requiring correct rendering of Latin Extended-A characters.
Unicode guides, encoding documentation, and technical references for special characters.
💡 Best Practices
Do
- Use
&Ebreve;in HTML when possible for readability - Serve pages as UTF-8; you can also type Ĕ directly in UTF-8 source
- Use fonts that support Latin Extended-A (U+0100–U+017F)
- Distinguish Ĕ (breve) from É (acute) and Ě (caron)
- Link to the lowercase pair
&ebreve;(ĕ) when documenting both forms
Don’t
- Substitute plain
Ewhen Ĕ is required for correct notation - Confuse breve Ĕ with acute É or caron Ě
- Put CSS escape
\114in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Ĕ; named entity is most readable
Ĕ Ĕ &Ebreve;For CSS stylesheets, use the escape in the content property
\114Unicode U+0114 — LATIN CAPITAL LETTER E WITH BREVE
Used in linguistic notation, transliteration, and academic content
Previous: Uppercase E Acute (É) Next: Uppercase E Caron (Ě)
❓ Frequently Asked Questions
&Ebreve; (named), Ĕ (hex), Ĕ (decimal), or \114 in CSS content. The named entity &Ebreve; is the most readable for HTML content.U+0114 (LATIN CAPITAL LETTER E WITH BREVE). Latin Extended-A block. Hex 114, decimal 276. Used in linguistic notation and specialized character sets.Ĕ or Ĕ) or the named entity &Ebreve; is used in HTML content. The CSS entity (\114) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ĕ but in different contexts.&Ebreve;. It is part of the standard HTML5 entity set and is well supported. You can also use Ĕ or Ĕ for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
