Upside Down Small t

Unicode Name: LATIN SMALL LETTER TURNED T

ʇ

Shortcodes

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

Unicode
U+0287
HTML Code
ʇ
HEX Code
ʇ
CSS Code
\0287
JS/JSON
\u0287
Unix/C/PHP/JAVA
0x287
URL-encode
%CA%87

Customize Upside Down Small t

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

ʇ
  

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

Insert in HTML

1. Direct symbol:
<span>ʇ</span>
HTML Code:
<span>&#647;</span>
HEX Code:
<span>&#x0287;</span>

Add with CSS

.upside-down-small-t::before {
  content: '\\0287';
}

Set it in JavaScript

document.querySelector('.upside-down-small-t').textContent = 'ʇ';
copied