Latin Small Letter I With Breve

ĭ

Shortcodes

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

Unicode
U+012D
HTML Code
ĭ
HEX Code
ĭ
CSS Code
\012D
JS/JSON
\u012D
Unix/C/PHP/JAVA
0x12D
URL-encode
%C4%AD

Customize Latin Small Letter I With Breve

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

ĭ
  

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

Insert in HTML

1. Direct symbol:
<span>ĭ</span>
HTML Code:
<span>&#301;</span>
HEX Code:
<span>&#x012D;</span>

Add with CSS

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

Set it in JavaScript

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