HTML Entity for Lowercase E Umlaut (ë)

What You'll Learn
How to display the lowercase e with diaeresis/umlaut (ë) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Used in French, Dutch, Luxembourgish, and other languages, it appears in words such as noël (Christmas) and indicates that the vowel is pronounced separately. It is U+00EB in the Latin-1 Supplement block.
Render it with ë, ë, ë, or CSS escape \00EB. The named entity ë is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase E Umlaut Entity
U+00EBLatin-1 Supplement
ëHexadecimal reference
ëDecimal reference
ëMost readable option
Name Value
──────────── ──────────
Unicode U+00EB
Hex code ë
HTML code ë
Named entity ë
CSS code \00EB
Meaning Latin small letter e with diaeresis
Also known as e umlaut
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase e umlaut (ë) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00EB";
}
</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 lowercase e umlaut (ë) and the named entity ë are supported in all modern browsers:
👀 Live Preview
See the lowercase e umlaut (ë) in French and Dutch contexts:
e (U+0065) or é (acute)🧠 How It Works
Hexadecimal Code
ë uses the Unicode hexadecimal value EB to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ë uses the decimal Unicode value 235 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ë is the standard named entity for ë—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\00EB 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+00EB sits in Latin-1 Supplement. In French and Dutch, ë marks a separately pronounced vowel—do not confuse with plain e (U+0065) or é (acute).
Use Cases
The lowercase e umlaut (ë) is commonly used in:
Correct spelling of French words (e.g. noël, Citroën, Zoë).
Text in Dutch, Luxembourgish, and related languages using the diaeresis.
Vocabulary, pronunciation guides, and dictionary entries for European languages.
Websites and apps targeting French-speaking or Benelux audiences.
Books, articles, and editorial content with proper names and foreign words.
Correct rendering so users can find content searching for words like “noël.”
Name fields, addresses, and user input that may contain European characters.
💡 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
lang="fr",lang="nl", orlang="lb"on relevant content - Use fonts that support Latin-1 Supplement characters
- Distinguish ë (umlaut) from plain
e(U+0065) and é (acute)
Don’t
- Substitute plain
ewhen ë is required for correct spelling - Confuse ë (umlaut) with é (acute) or other accented e variants
- Put CSS escape
\00EBin HTML text nodes - Assume all fonts render Latin-1 glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Four references render ë; named entity is most readable
ë ë ëFor CSS stylesheets, use the escape in the content property
\00EBUnicode U+00EB — LATIN SMALL LETTER E WITH DIAERESIS
Essential for French, Dutch, Luxembourgish, and internationalized web content
Previous: Lowercase E Turned (ǝ) Next: Lowercase Esszed
❓ Frequently Asked Questions
ë (named), ë (hex), ë (decimal), or \00EB in CSS content. All four methods render ë correctly.U+00EB (LATIN SMALL LETTER E WITH DIAERESIS). Latin-1 Supplement block. Hex EB, decimal 235. Used in French, Dutch, Luxembourgish, and other languages.ë or ë) or the named entity ë is used in HTML content. The CSS entity (\00EB) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ë but in different contexts.ë is easier to read and maintain in hand-written HTML. Numeric codes (ë or ë) are useful when generating HTML programmatically. All produce the same character ë.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
