Latin Small Letter E With Ogonek

ę

Shortcodes

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

Unicode
U+0119
HTML Code
ę
HEX Code
ę
CSS Code
\0119
JS/JSON
\u0119
Unix/C/PHP/JAVA
0x119
URL-encode
%C4%99

Customize Latin Small Letter E With Ogonek

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

ę
  

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

Insert in HTML

1. Direct symbol:
<span>ę</span>
HTML Code:
<span>&#281;</span>
HEX Code:
<span>&#x0119;</span>

Add with CSS

.latin-small-letter-e-with-ogonek::before {
  content: '\\0119';
}

Set it in JavaScript

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