Latin Small Letter I With Tilde Below

Shortcodes

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

Unicode
U+1E2D
HTML Code
ḭ
HEX Code
ḭ
CSS Code
\1E2D
JS/JSON
\u1E2D
Unix/C/PHP/JAVA
0x1E2D
URL-encode
%E1%B8%AD

Customize Latin Small Letter I With Tilde Below

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

  

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

Insert in HTML

1. Direct symbol:
<span>ḭ</span>
HTML Code:
<span>&#7725;</span>
HEX Code:
<span>&#x1E2D;</span>

Add with CSS

.latin-small-letter-i-with-tilde-below::before {
  content: '\\1E2D';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-i-with-tilde-below').textContent = 'ḭ';
copied