Latin Capital Letter I With Tilde

Ĩ

Shortcodes

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

Unicode
U+0128
HTML Code
Ĩ
HEX Code
Ĩ
CSS Code
\0128
JS/JSON
\u0128
Unix/C/PHP/JAVA
0x128
URL-encode
%C4%A8

Customize Latin Capital Letter I With Tilde

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

Ĩ
  

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

Insert in HTML

1. Direct symbol:
<span>Ĩ</span>
HTML Code:
<span>&#296;</span>
HEX Code:
<span>&#x0128;</span>

Add with CSS

.latin-capital-letter-i-with-tilde::before {
  content: '\\0128';
}

Set it in JavaScript

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