Upside Down I

Unicode Name: LATIN SMALL LETTER TURNED I

Shortcodes

Copy and paste codes for Upside Down I symbol ᴉ to use in your websites, apps, blogs, and more.

Unicode
U+1D09
HTML Code
ᴉ
HEX Code
ᴉ
CSS Code
\1D09
JS/JSON
\u1D09
Unix/C/PHP/JAVA
0x1D09
URL-encode
%E1%B4%89
copied

Customize Upside Down I Symbol

Customize ᴉ symbol as you like and download Upside Down I as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Upside Down I symbol in HTML, CSS, and JS?

Insert ᴉ Upside Down I using HTML

1. Copy-paste Upside Down I directly:
<span>ᴉ</span>
2. HTML Decimal Code:
<span>&#7433;</span>
3. Hexadecimal Code:
<span>&#x1D09;</span>
Preview:

Add Upside Down I symbol with CSS

.upside-down-i::before {
    content: '\\1D09';
}
Preview: Upside Down I

Upside Down I JavaScript Code

1. Direct Symbol:
document.querySelector('.upside-down-i').textContent = 'ᴉ';
2. Unicode Escape for ᴉ:
document.querySelector('.upside-down-i').textContent = '\u1D09';
Preview: