Latin Capital Letter E With Diaeresis

Ë

Shortcodes

Copy useful codes for latin capital letter e with diaeresis symbol Ë to use in websites, apps, blogs, and docs.

Unicode
U+00CB
Alt Code
203
HTML Code
Ë
HTML Entity
Ë
HEX Code
Ë
CSS Code
\00CB
JS/JSON
\u00CB
Unix/C/PHP/JAVA
0xCB
URL-encode
%C3%8B

Customize Latin Capital Letter E With Diaeresis

Customize Ë, download it as SVG or PNG, or copy the generated HTML snippet.

Ë
  

How to use Latin Capital Letter E With Diaeresis Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ë</span>
HTML Code:
<span>&#203;</span>
HTML Entity:
<span>&Euml;</span>
HEX Code:
<span>&#x00CB;</span>

Add with CSS

.latin-capital-letter-e-with-diaeresis::before {
  content: '\\00CB';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-e-with-diaeresis').textContent = 'Ë';
copied