HTML Entity for Uppercase E Macron (Ē)

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

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

Unicode U+0112

Latin Extended-A

Hex Code Ē

Hexadecimal reference

HTML Code Ē

Decimal reference

Named Entity Ē

Most readable option

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

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:

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

🌐 Browser Support

The uppercase E macron (Ē) and the named entity &Emacr; are supported in modern browsers when UTF-8 is used:

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

👀 Live Preview

See the uppercase E macron (Ē) in language and content contexts:

Large glyphĒ
Latvian / LithuanianLong vowel Ē
LatinLong E in Latin notation: Ē
Case pairĒ (uppercase) / ē (lowercase)
Named entity&Emacr; renders as Ē
Numeric refs&#x112; &#274; &Emacr; \112

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\112 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+0112 sits in Latin Extended-A. Lowercase equivalent: U+0113 (&emacr;). Do not confuse with plain E (U+0045) or the combining macron alone.

Use Cases

The uppercase E macron (Ē) is commonly used in:

🇯🇻 Latvian & Lithuanian

Essential in Baltic languages where Ē marks a long vowel sound.

🇷 Latin

Used in Latin texts and dictionaries to indicate long vowels (macron notation).

🌐 Internationalization

Websites and apps for Baltic languages and other macron-using orthographies.

🔤 Linguistics

Phonetic transcriptions and language learning materials using macron diacritics.

📝 Proper names

Names of people, places, and brands that include Ē in Baltic or Latin spelling.

📄 Publishing

Academic papers, editorial content, and dictionaries with extended Latin characters.

🔍 Search & SEO

Correct rendering so users can find content with proper macron spelling.

💡 Best Practices

Do

  • Use &Emacr; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ē directly in UTF-8 source
  • Set appropriate lang attributes (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 E when Ē is required for correct spelling
  • Confuse Ē (macron) with Ĕ (breve) or ¯ (combining macron alone)
  • Put CSS escape \112 in HTML text nodes
  • Use padded Unicode notation like U+00112—the correct value is U+0112
  • Use \00112 in CSS—the correct escape is \112

Key Takeaways

1

Four references render Ē; named entity is most readable

&#x112; &#274; &Emacr;
2

For CSS stylesheets, use the escape in the content property

\112
3

Unicode U+0112 — LATIN CAPITAL LETTER E WITH MACRON

4

Essential for Latvian, Lithuanian, Latin, and i18n content

❓ Frequently Asked Questions

Use &Emacr; (named), &#x112; (hex), &#274; (decimal), or \112 in CSS content. The named entity &Emacr; 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.
When writing Latvian, Lithuanian, Latin long vowels, or other languages that use the macron for long E, plus phonetic and linguistic notation, proper names, and multilingual websites.
HTML code (&#274; or &#x112;) or the named entity &Emacr; 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.
Yes. The named HTML entity is &Emacr;. It is part of the standard HTML5 entity set and is well supported. You can also use &#274; or &#x112; 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