HTML Entity for Uppercase E Macron (Ē)

What You'll Learn
How to display the uppercase E with macron (Ē) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The macron indicates a long vowel and is used in Latvian, Lithuanian, Latin, and linguistic notation. It is U+0112 in the Latin Extended-A block.
Render it with Ē, Ē, Ē, or CSS escape \112. The named entity Ē is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase E Macron Entity
U+0112Latin Extended-A
ĒHexadecimal reference
ĒDecimal reference
ĒMost readable option
Name Value
──────────── ──────────
Unicode U+0112
Hex code Ē
HTML code Ē
Named entity Ē
CSS code \112
Meaning Latin capital letter E with macron
Related U+0113 = ē (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase E macron (Ē) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\112";
}
</style>
</head>
<body>
<p>Symbol (hex): Ē</p>
<p>Symbol (decimal): Ē</p>
<p>Symbol (named): Ē</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase E macron (Ē) and the named entity Ē are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase E macron (Ē) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ē uses the Unicode hexadecimal value 112 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ē uses the decimal Unicode value 274 to display the same character. A common method for Latin Extended-A characters.
Named Entity
Ē is the standard named entity for Ē—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\112 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+0112 sits in Latin Extended-A. Lowercase equivalent: U+0113 (ē). Do not confuse with plain E (U+0045) or the combining macron alone.
Use Cases
The uppercase E macron (Ē) is commonly used in:
Essential in Baltic languages where Ē marks a long vowel sound.
Used in Latin texts and dictionaries to indicate long vowels (macron notation).
Websites and apps for Baltic languages and other macron-using orthographies.
Phonetic transcriptions and language learning materials using macron diacritics.
Names of people, places, and brands that include Ē in Baltic or Latin spelling.
Academic papers, editorial content, and dictionaries with extended Latin characters.
Correct rendering so users can find content with proper macron spelling.
💡 Best Practices
Do
- Use
Ēin HTML when possible for readability - Serve pages as UTF-8; you can also type Ē directly in UTF-8 source
- Set appropriate
langattributes (e.g.lang="lv",lang="lt") - Use fonts that support Latin Extended-A (U+0100–U+017F)
- Distinguish Ē (macron) from plain
E(U+0045) and Ĕ (breve)
Don’t
- Substitute plain
Ewhen Ē is required for correct spelling - Confuse Ē (macron) with Ĕ (breve) or ¯ (combining macron alone)
- Put CSS escape
\112in HTML text nodes - Use padded Unicode notation like U+00112—the correct value is
U+0112 - Use
\00112in CSS—the correct escape is\112
Key Takeaways
Four references render Ē; named entity is most readable
Ē Ē ĒFor CSS stylesheets, use the escape in the content property
\112Unicode U+0112 — LATIN CAPITAL LETTER E WITH MACRON
Essential for Latvian, Lithuanian, Latin, and i18n content
Previous: Uppercase E Inverted Breve (Ȇ) Next: Uppercase E Ogonek (Ę)
❓ Frequently Asked Questions
Ē (named), Ē (hex), Ē (decimal), or \112 in CSS content. The named entity Ē is the most readable for HTML content.U+0112 (LATIN CAPITAL LETTER E WITH MACRON). Latin Extended-A block. Hex 112, decimal 274. Used in Latvian, Lithuanian, Latin, and linguistic notation.Ē or Ē) or the named entity Ē is used in HTML content. The CSS entity (\112) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ē but in different contexts.Ē. 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
