HTML Entity for Lowercase E (e)

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

What You'll Learn

How to display the lowercase letter e in HTML using entity methods. The letter e is the fifth letter of the Latin alphabet (U+0065) and is part of the Basic Latin block. It is the most commonly used letter in English and many other languages. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.

This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &e; for this letter.

⚡ Quick Reference — Lowercase E Entity

Unicode U+0065

Basic Latin (ASCII)

Hex Code e

Hexadecimal reference

HTML Code e

Decimal reference

Direct Character e

Type directly (no named entity)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0065
Hex code       e
HTML code      e
Named entity   (none — use e directly)
CSS code       \65
Meaning        Latin small letter e
Related        U+0045 = E (uppercase)
Block          Basic Latin (U+0000–U+007F)
1

Complete HTML Example

A simple example showing the lowercase letter e using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\65";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x65;</p>
<p>Symbol (decimal): &#101;</p>
<p>Symbol (direct): e</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase letter e (U+0065) is universally supported in all browsers and platforms as part of Basic Latin:

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

👀 Live Preview

See the lowercase letter e in common text contexts:

Large glyphe
Body textThe letter e is the most common letter in English.
LabelOption e: fifth choice
Alphabeta b c d e f g
Numeric refs&#x65; &#101; \65

🧠 How It Works

1

Hexadecimal Code

&#x65; uses the Unicode hexadecimal value 65 to display the letter. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#101; uses the decimal Unicode value 101 to display the same character. This is the ASCII/Unicode decimal for e.

HTML markup
3

Direct Character

Type e directly in HTML. There is no named entity like &e;; the character itself is the standard approach in body text.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: e. Unicode U+0065 sits in Basic Latin. The uppercase form is U+0045 (E). In normal text, typing e is preferred.

Use Cases

The lowercase letter e (or its entity forms) is commonly used in:

📝 Body text

Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.

⚙ Programmatic HTML

When building HTML in code, using &#101; or &#x65; ensures correct output regardless of encoding context.

🎨 CSS generated content

Using \65 in the CSS content property to insert e via ::before or ::after.

🔤 Alphabet & education

Teaching the alphabet, phonics, or character encoding; entity codes clarify the exact character.

🔍 Reference & docs

Documentation and tutorials that explain how to represent Basic Latin characters using HTML entities.

🛡 Escaping & security

In some contexts, numeric entities can help avoid injection or encoding issues when the raw character might be misinterpreted.

🌐 Internationalization

Ensure consistent representation of the letter e across different encodings and platforms.

💡 Best Practices

Do

  • Type e directly in body content; use entities only when necessary
  • Serve pages as UTF-8 so Basic Latin characters render without entities
  • Use numeric references (&#x65; or &#101;) when escaping is required
  • Use \65 in CSS content when generating the letter via pseudo-elements
  • Remember lowercase e is U+0065 and uppercase E is U+0045 when case matters

Don’t

  • Overuse numeric entities for e in normal readable text
  • Expect a named HTML entity like &e;—none exists for this letter
  • Put CSS escape \65 in HTML text nodes
  • Confuse plain e (U+0065) with accented variants like é (e with acute)
  • Mix entity styles randomly in one file without reason

Key Takeaways

1

Type e directly, or use hex/decimal references

&#x65; &#101;
2

For CSS stylesheets, use the escape in the content property

\65
3

Unicode U+0065 — LATIN SMALL LETTER E

4

Fifth letter of the Latin alphabet (Basic Latin block)

❓ Frequently Asked Questions

Type e directly, or use &#x65; (hex), &#101; (decimal), or \65 in CSS content. For most content, typing e is standard; use numeric or CSS entities when escaping or generating via CSS.
U+0065 (LATIN SMALL LETTER E). Basic Latin block. Hex 65, decimal 101. It is the fifth letter of the Latin alphabet and the most common letter in English.
Use numeric or CSS entities when generating HTML programmatically, escaping in attributes, using CSS ::before/::after content, or ensuring encoding in legacy systems. For normal body text, typing e is preferred.
HTML code (&#101; or &#x65;) is used in HTML content or attributes. The CSS entity (\65) is used in CSS, e.g. in the content property of pseudo-elements. Both produce e but in different contexts.
No. HTML does not define a named entity like &e; for the letter e. Use the character e directly, or numeric references &#101; (decimal) or &#x65; (hex). Named entities are mainly for characters with special meaning (e.g. &lt;, &amp;).

Explore More HTML Entities!

Discover 1500+ HTML character references — 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