Latin Capital Letter E With Ogonek

Ę

Shortcodes

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

Unicode
U+0118
HTML Code
Ę
HEX Code
Ę
CSS Code
\0118
JS/JSON
\u0118
Unix/C/PHP/JAVA
0x118
URL-encode
%C4%98

Customize Latin Capital Letter E With Ogonek

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

Ę
  

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

Insert in HTML

1. Direct symbol:
<span>Ę</span>
HTML Code:
<span>&#280;</span>
HEX Code:
<span>&#x0118;</span>

Add with CSS

.latin-capital-letter-e-with-ogonek::before {
  content: '\\0118';
}

Set it in JavaScript

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