HTML Entity for Lowercase E Breve (ĕ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0115

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

Unicode U+0115

Latin Extended-A

Hex Code ĕ

Hexadecimal reference

HTML Code ĕ

Decimal reference

Named Entity &ebreve;

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\115";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x115;</p>
<p>Symbol (decimal): &#277;</p>
<p>Symbol (named): &ebreve;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase e breve (ĕ) and the named entity &ebreve; are supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase e breve (ĕ) in linguistic and content contexts:

Large glyphĕ
PhoneticShort vowel: ĕ marks a breve (˘) over e
TransliterationUsed in Church Slavonic and Vietnamese romanization systems
Named entity&ebreve; renders as ĕ
Numeric refs&#x115; &#277; &ebreve; \115

🧠 How It Works

1

Hexadecimal Code

&#x115; uses the Unicode hexadecimal value 115 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#277; uses the decimal Unicode value 277 to display the same character. A common method for Latin Extended-A characters.

HTML markup
3

Named Entity

&ebreve; is the standard named entity for ĕ—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\115 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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 &eacute; (é).

Use Cases

The lowercase e breve (ĕ) is commonly used in:

🔤 Linguistics & phonetics

Phonetic transcription, IPA-style notation, and linguistic descriptions of short vowels.

📝 Latin transliteration

Church Slavonic, Vietnamese romanization, and other systems using the breve for short vowels.

📚 Language learning

Courses, dictionaries, and glossaries showing correct diacritics.

📄 Publishing

Academic and scholarly publications requiring extended Latin characters.

🌐 International content

Multilingual websites and documents with specialized orthography.

🎨 Typography

Headlines and styled text requiring the breve diacritical mark.

🔍 Character reference

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 e when ĕ is required for correct spelling
  • Confuse breve ĕ with acute é or caron ě
  • Put CSS escape \115 in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Omit UTF-8 encoding on pages with extended Latin characters

Key Takeaways

1

Four references render ĕ; named entity is most readable

&#x115; &#277; &ebreve;
2

For CSS stylesheets, use the escape in the content property

\115
3

Unicode U+0115 — LATIN SMALL LETTER E WITH BREVE

4

Used in linguistic notation, transliteration, and specialized typography

❓ Frequently Asked Questions

Use &ebreve; (named), &#x115; (hex), &#277; (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.
In linguistic and phonetic content, Latin transliteration (e.g. Church Slavonic, Vietnamese romanization), language learning materials, dictionaries, and typography that requires the breve diacritical mark.
HTML code (&#277; or &#x115;) 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.
Yes. The named HTML entity is &ebreve;. It is part of the HTML5 entity set and is well supported. You can also use &#277; or &#x115; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful