Upside Down Small y

Unicode Name: LATIN SMALL LETTER TURNED Y

ʎ

Shortcodes

Copy useful codes for upside down small y symbol ʎ to use in websites, apps, blogs, and docs.

Unicode
U+028E
HTML Code
ʎ
HEX Code
ʎ
CSS Code
\028E
JS/JSON
\u028E
Unix/C/PHP/JAVA
0x28E
URL-encode
%CA%8E

Customize Upside Down Small y

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

ʎ
  

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

Insert in HTML

1. Direct symbol:
<span>ʎ</span>
HTML Code:
<span>&#654;</span>
HEX Code:
<span>&#x028E;</span>

Add with CSS

.upside-down-small-y::before {
  content: '\\028E';
}

Set it in JavaScript

document.querySelector('.upside-down-small-y').textContent = 'ʎ';
copied