Fullwidth Latin Capital Letter E

Shortcodes

Copy useful codes for fullwidth latin capital letter e symbol E to use in websites, apps, blogs, and docs.

Unicode
U+FF25
HTML Code
E
HEX Code
E
CSS Code
\FF25
JS/JSON
\uFF25
Unix/C/PHP/JAVA
0xFF25
URL-encode
%EF%BC%A5

Customize Fullwidth Latin Capital Letter E

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

  

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

Insert in HTML

1. Direct symbol:
<span>E</span>
HTML Code:
<span>&#65317;</span>
HEX Code:
<span>&#xFF25;</span>

Add with CSS

.fullwidth-latin-capital-letter-e::before {
  content: '\\FF25';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-capital-letter-e').textContent = 'E';
copied