Upside Down I

Unicode Name: LATIN SMALL LETTER TURNED I

Shortcodes

Copy useful codes for upside down i symbol ᴉ to use in websites, apps, blogs, and docs.

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

Customize Upside Down I

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

  

How to use Upside Down I Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᴉ</span>
HTML Code:
<span>&#7433;</span>
HEX Code:
<span>&#x1D09;</span>

Add with CSS

.upside-down-i::before {
  content: '\\1D09';
}

Set it in JavaScript

document.querySelector('.upside-down-i').textContent = 'ᴉ';
copied