HTML Entity for Lowercase E Breve (ĕ)

What You'll Learn
How to display the lowercase e with breve (ĕ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0115 in the Latin Extended-A block and marks a short vowel in linguistic notation and transliteration systems.
Render it with &ebreve;, ĕ, ĕ, or CSS escape \115. The named entity &ebreve; is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase E Breve Entity
U+0115Latin Extended-A
ĕHexadecimal reference
ĕDecimal reference
&ebreve;Most readable option
Name Value
──────────── ──────────
Unicode U+0115
Hex code ĕ
HTML code ĕ
Named entity &ebreve;
CSS code \115
Meaning Latin small letter e with breve
Related U+0114 = &Ebreve; (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase e breve (ĕ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\115";
}
</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 lowercase e breve (ĕ) and the named entity &ebreve; are supported in modern browsers:
👀 Live Preview
See the lowercase e breve (ĕ) in linguistic and content contexts:
🧠 How It Works
Hexadecimal Code
ĕ uses the Unicode hexadecimal value 115 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ĕ uses the decimal Unicode value 277 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
\115 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+0115 sits in Latin Extended-A. Uppercase equivalent: U+0114 (&Ebreve;). Do not confuse with plain e (U+0065) or acute é (é).
Use Cases
The lowercase e breve (ĕ) is commonly used in:
Phonetic transcription, IPA-style notation, and linguistic descriptions of short vowels.
Church Slavonic, Vietnamese romanization, and other systems using the breve for short vowels.
Courses, dictionaries, and glossaries showing correct diacritics.
Academic and scholarly publications requiring extended Latin characters.
Multilingual websites and documents with specialized orthography.
Headlines and styled text requiring the breve diacritical mark.
Documentation, character maps, and encoding tutorials for U+0115.
💡 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 characters
- Pick one entity style (hex, decimal, or named) per project
- Distinguish ĕ (breve) from é (acute) and plain
e(U+0065)
Don’t
- Substitute plain
ewhen ĕ is required for correct spelling - Confuse breve ĕ with acute é or caron ě
- Put CSS escape
\115in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render ĕ; named entity is most readable
ĕ ĕ &ebreve;For CSS stylesheets, use the escape in the content property
\115Unicode U+0115 — LATIN SMALL LETTER E WITH BREVE
Used in linguistic notation, transliteration, and specialized typography
Previous: Lowercase E Acute (é) Next: Lowercase E Caron
❓ Frequently Asked Questions
&ebreve; (named), ĕ (hex), ĕ (decimal), or \115 in CSS content. The named entity &ebreve; is the most readable for HTML content.U+0115 (LATIN SMALL LETTER E WITH BREVE). Latin Extended-A block. Hex 115, decimal 277. The breve indicates a short vowel in linguistic and transliteration contexts.ĕ or ĕ) or the named entity &ebreve; is used in HTML content. The CSS entity (\115) 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 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
