Latin Small Letter I With Caron

ǐ

Shortcodes

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

Unicode
U+01D0
HTML Code
ǐ
HEX Code
ǐ
CSS Code
\01D0
JS/JSON
\u01D0
Unix/C/PHP/JAVA
0x1D0
URL-encode
%C7%90

Customize Latin Small Letter I With Caron

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

ǐ
  

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

Insert in HTML

1. Direct symbol:
<span>ǐ</span>
HTML Code:
<span>&#464;</span>
HEX Code:
<span>&#x01D0;</span>

Add with CSS

.latin-small-letter-i-with-caron::before {
  content: '\\01D0';
}

Set it in JavaScript

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