HTML Entity for Double Struck Italic Small E (ⅇ)

What You'll Learn
How to display the Double Struck Italic Small E (ⅇ) in HTML using hexadecimal, decimal, the named entity ⅇ, and CSS escape methods. This character is U+2147 (DOUBLE-STRUCK ITALIC SMALL E) in the Letterlike Symbols block (U+2100–U+214F)—often used for Euler’s number (e) in mathematics and exponential notation.
Render it with ⅇ, ⅇ, ⅇ, or CSS escape \2147. The next letterlike symbol in this block is double-struck italic small i: ⅈ (U+2148, ⅈ). See also math entities.
⚡ Quick Reference — Double Struck Italic Small E
U+2147Letterlike Symbols block
ⅇHexadecimal reference
ⅇDecimal reference
ⅇHTML5 named entity for U+2147
Name Value
──────────── ──────────
Unicode U+2147
Hex code ⅇ
HTML code ⅇ
Named entity ⅇ
CSS code \2147
Related U+2148 = Small i (ⅈ)Complete HTML Example
This example demonstrates the Double Struck Italic Small E (ⅇ) using hexadecimal code, decimal HTML code, the named entity ⅇ, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2147";
}
</style>
</head>
<body>
<p>Double Struck Italic Small E using Hexadecimal: ⅇ</p>
<p>Double Struck Italic Small E using HTML Code: ⅇ</p>
<p>Double Struck Italic Small E using HTML Entity: ⅇ</p>
<p id="point">Double Struck Italic Small E using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2147 is widely supported in modern browsers when rendered with a font that includes Letterlike Symbols:
👀 Live Preview
See the Double Struck Italic Small E (ⅇ) in mathematical notation:
🧠 How It Works
Hexadecimal Code
ⅇ uses the Unicode hexadecimal value 2147 to display the Double Struck Italic Small E. The x prefix indicates hexadecimal format.
Decimal HTML Code
ⅇ uses the decimal Unicode value 8519 to display the same character.
Named HTML Entity
ⅇ is the HTML5 named entity for U+2147. It is easy to read in source and resolves to the same character (ⅇ).
CSS Entity
\2147 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⅇ. Unicode U+2147. Next in block: small i via ⅈ (ⅈ, U+2148).
Use Cases
The Double Struck Italic Small E (ⅇ) commonly appears in:
Mathematics and calculus where ⅇ denotes Euler’s number (e ≈ 2.718…) in expressions such as ex or natural logarithms.
Scientific and financial notation involving exponential functions, growth, or decay (e.g. ⅇkt).
Textbooks, papers, and course materials requiring letterlike math symbols in HTML.
Equation editors and math rendering alongside other double-struck italic letters.
Entity lists and guides for Letterlike Symbols (U+2100–U+214F).
Use math-capable fonts so ⅇ renders clearly for all readers.
💡 Best Practices
Do
- Use
ⅇfor readable markup, orⅇ/ⅇ - Use math fonts (Cambria Math, STIX Two Math) for reliable rendering
- Distinguish ⅇ (small e) from ⅈ (
ⅈ, small i) - Use
\2147only inside CSScontent - Keep entity style consistent across the document
Don’t
- Confuse
ⅇ(U+2147) with the regular letter e (U+0065) - Use
ⅈfor small i (ⅈ), notⅇ(ⅇ) - Put CSS escape
\2147in HTML text nodes - Forget UTF-8 (
<meta charset="utf-8">) on math pages - Assume every font includes Letterlike Symbols
Key Takeaways
Named entity available: ⅇ
ⅇ ⅇFor CSS stylesheets, use the escape in the content property
\2147Unicode U+2147 DOUBLE-STRUCK ITALIC SMALL E
Small i: ⅈ via ⅈ or ⅈ
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
ⅇ (hex), ⅇ (decimal), ⅇ (named entity), or \2147 in CSS content. All produce ⅇ.U+2147 (DOUBLE-STRUCK ITALIC SMALL E). Letterlike Symbols block (U+2100–U+214F). Hex 2147, decimal 8519. Double-struck italic form of Latin small letter e.ⅇ, ⅇ, or ⅇ) go in markup. The CSS escape \2147 is used in stylesheets, typically in the content property of pseudo-elements.ⅇ is easier to read in source than ⅇ or ⅇ, but all produce ⅇ. The named entity is part of the HTML5 entity set for Letterlike Symbols.Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, letterlike glyphs, and more.
8 people found this page helpful
