Latin Small Letter I With Inverted Breve

ȋ

Shortcodes

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

Unicode
U+020B
HTML Code
ȋ
HEX Code
ȋ
CSS Code
\020B
JS/JSON
\u020B
Unix/C/PHP/JAVA
0x20B
URL-encode
%C8%8B

Customize Latin Small Letter I With Inverted Breve

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

ȋ
  

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

Insert in HTML

1. Direct symbol:
<span>ȋ</span>
HTML Code:
<span>&#523;</span>
HEX Code:
<span>&#x020B;</span>

Add with CSS

.latin-small-letter-i-with-inverted-breve::before {
  content: '\\020B';
}

Set it in JavaScript

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