Latin Small Letter I With Tilde

ĩ

Shortcodes

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

Unicode
U+0129
HTML Code
ĩ
HEX Code
ĩ
CSS Code
\0129
JS/JSON
\u0129
Unix/C/PHP/JAVA
0x129
URL-encode
%C4%A9

Customize Latin Small Letter I With Tilde

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

ĩ
  

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

Insert in HTML

1. Direct symbol:
<span>ĩ</span>
HTML Code:
<span>&#297;</span>
HEX Code:
<span>&#x0129;</span>

Add with CSS

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

Set it in JavaScript

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