HTML Entity for Uppercase E Umlaut (Ë)

What You'll Learn
How to display the uppercase E with diaeresis/umlaut (Ë) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Albanian, French, Luxembourgish, and other languages, it appears in words such as ËSHTË (is) and DURRËS when capitalized. It is U+00CB in the Latin-1 Supplement block.
Render it with Ë, Ë, Ë, or CSS escape \00CB. The named entity Ë is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase E Umlaut Entity
U+00CBLatin-1 Supplement
ËHexadecimal reference
ËDecimal reference
ËMost readable option
Name Value
──────────── ──────────
Unicode U+00CB
Hex code Ë
HTML code Ë
Named entity Ë
CSS code \00CB
Meaning Latin capital letter E with diaeresis
Also known as E umlaut
Related U+00EB = ë (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase E umlaut (Ë) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00CB";
}
</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 uppercase E umlaut (Ë) and the named entity Ë are supported in all modern browsers:
👀 Live Preview
See the uppercase E umlaut (Ë) in Albanian and European contexts:
🧠 How It Works
Hexadecimal Code
Ë uses the Unicode hexadecimal value CB to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ë uses the decimal Unicode value 203 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
\00CB 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+00CB sits in Latin-1 Supplement. Lowercase equivalent: U+00EB (ë). Do not confuse with plain E (U+0045) or Ê (circumflex).
Use Cases
The uppercase E umlaut (Ë) is commonly used in:
All-caps text and place names (e.g. ËSHTË, DURRËS) with correct spelling.
European languages that use Ë in capitalized words and proper names.
Websites and apps targeting Albanian and European language audiences.
Dictionaries, vocabulary apps, and pronunciation guides for Albanian.
Academic, editorial, and legal content with Albanian names and place names.
Product names, brand names, and descriptions for Albanian markets.
Correct rendering so Albanian content is indexed and found by users searching for Ë.
💡 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="sq",lang="fr", orlang="lb"on relevant content - Use fonts that support Latin-1 Supplement characters
- Distinguish Ë (umlaut) from plain
E(U+0045) and Ê (circumflex)
Don’t
- Substitute plain
Ewhen Ë is required for correct Albanian spelling - Confuse Ë (umlaut) with É (acute) or other accented E variants
- Put CSS escape
\00CBin HTML text nodes - Use padded Unicode notation like U+000CB—the correct value is
U+00CB - Use
\000CBin CSS—the correct escape is\00CB
Key Takeaways
Four references render Ë; named entity is most readable
Ë Ë ËFor CSS stylesheets, use the escape in the content property
\00CBUnicode U+00CB — LATIN CAPITAL LETTER E WITH DIAERESIS
Essential for Albanian, French, Luxembourgish, and internationalized web content
Previous: Uppercase E Script Capital (ℰ) Next: Uppercase Eng (Ŋ)
❓ Frequently Asked Questions
Ë (named), Ë (hex), Ë (decimal), or \00CB in CSS content. All four methods render Ë correctly.U+00CB (LATIN CAPITAL LETTER E WITH DIAERESIS). Latin-1 Supplement block. Hex CB, decimal 203. Used in Albanian, French, Luxembourgish, and other languages.Ë or Ë) or the named entity Ë is used in HTML content. The CSS entity (\00CB) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ë but in different contexts.Ë. It is part of the standard HTML5 entity set and is well supported. You can also use Ë or Ë for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
