Latin Small Letter I With Ogonek

į

Shortcodes

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

Unicode
U+012F
HTML Code
į
HEX Code
į
CSS Code
\012F
JS/JSON
\u012F
Unix/C/PHP/JAVA
0x12F
URL-encode
%C4%AF

Customize Latin Small Letter I With Ogonek

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

į
  

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

Insert in HTML

1. Direct symbol:
<span>į</span>
HTML Code:
<span>&#303;</span>
HEX Code:
<span>&#x012F;</span>

Add with CSS

.latin-small-letter-i-with-ogonek::before {
  content: '\\012F';
}

Set it in JavaScript

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