HTML Entity for Lowercase E (e)

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
U+0065Basic Latin (ASCII)
eHexadecimal reference
eDecimal reference
eType directly (no named entity)
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\65";
}
</style>
</head>
<body>
<p>Symbol (hex): e</p>
<p>Symbol (decimal): e</p>
<p>Symbol (direct): e</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase letter e (U+0065) is universally supported in all browsers and platforms as part of Basic Latin:
👀 Live Preview
See the lowercase letter e in common text contexts:
🧠 How It Works
Hexadecimal Code
e uses the Unicode hexadecimal value 65 to display the letter. The x prefix indicates hexadecimal format.
Decimal HTML Code
e uses the decimal Unicode value 101 to display the same character. This is the ASCII/Unicode decimal for e.
Direct Character
Type e directly in HTML. There is no named entity like &e;; the character itself is the standard approach in body text.
CSS Entity
\65 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.
When building HTML in code, using e or e ensures correct output regardless of encoding context.
Using \65 in the CSS content property to insert e via ::before or ::after.
Teaching the alphabet, phonics, or character encoding; entity codes clarify the exact character.
Documentation and tutorials that explain how to represent Basic Latin characters using HTML entities.
In some contexts, numeric entities can help avoid injection or encoding issues when the raw character might be misinterpreted.
Ensure consistent representation of the letter e across different encodings and platforms.
💡 Best Practices
Do
- Type
edirectly in body content; use entities only when necessary - Serve pages as UTF-8 so Basic Latin characters render without entities
- Use numeric references (
eore) when escaping is required - Use
\65in CSScontentwhen 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
ein normal readable text - Expect a named HTML entity like
&e;—none exists for this letter - Put CSS escape
\65in 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
Type e directly, or use hex/decimal references
e eFor CSS stylesheets, use the escape in the content property
\65Unicode U+0065 — LATIN SMALL LETTER E
Fifth letter of the Latin alphabet (Basic Latin block)
Previous: Lowercase Dz Caron (dž) Next: Lowercase E Acute
❓ Frequently Asked Questions
e directly, or use e (hex), e (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.::before/::after content, or ensuring encoding in legacy systems. For normal body text, typing e is preferred.e or e) 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.&e; for the letter e. Use the character e directly, or numeric references e (decimal) or e (hex). Named entities are mainly for characters with special meaning (e.g. <, &).Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
