HTML Entity for Lowercase T Reverse (ʇ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0287

What You'll Learn

How to display the lowercase t reverse (ʇ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is officially named LATIN SMALL LETTER TURNED T—a rotated t used in IPA phonetic notation, linguistic transcriptions, and typography or design effects. It is U+0287 in the IPA Extensions block.

Render it with ʇ, ʇ, or CSS escape \0287. There is no named HTML entity for this character, so numeric codes or CSS must be used. In UTF-8 documents you can also type ʇ directly.

⚡ Quick Reference — Lowercase T Reverse Entity

Unicode U+0287

IPA Extensions

Hex Code ʇ

Hexadecimal reference

HTML Code ʇ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0287
Hex code       ʇ
HTML code      ʇ
Named entity   (none)
CSS code       \0287
Meaning        Latin small letter turned t (reverse t)
Also called    Turned t
Related        U+0074 = t (plain lowercase)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase t reverse (ʇ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0287";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0287;</p>
<p>Symbol (decimal): &#647;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase t reverse (ʇ) is supported in modern browsers when the font includes IPA Extensions glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase t reverse (ʇ) in phonetic and typographic contexts:

Large glyphʇ
Unicode nameLatin small letter turned t
UsesIPA notation, linguistic transcriptions, typography, and creative text effects
Not the same asplain t (U+0074) or ʈ (t retroflex hook)
Numeric refs&#x0287; &#647; \0287

🧠 How It Works

1

Hexadecimal Code

&#x0287; uses the Unicode hexadecimal value 0287 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#647; uses the decimal Unicode value 647 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

\0287 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ʇ. Unicode U+0287 sits in IPA Extensions. Do not confuse with plain t (U+0074) or ʈ (t retroflex hook). Use IPA-capable fonts for reliable rendering.

Use Cases

The lowercase t reverse (ʇ) is commonly used in:

🎤 IPA transcription

Phonetic notation using the turned t symbol in linguistic transcriptions.

🔤 Linguistics

Academic papers, phonology textbooks, and language documentation.

📖 Dictionaries

Pronunciation keys and language-learning materials using specialized notation.

🎨 Typography

Creative text effects, logos, and designs requiring a reversed or turned t shape.

🛠 Web design

Decorative headings, badges, and UI elements with unique letterforms.

♿ Accessibility

Using U+0287 ensures assistive tech interprets ʇ as one distinct character.

⚙ Programmatic HTML

When generating markup, using &#647; or &#x0287; ensures correct output.

💡 Best Practices

Do

  • Use U+0287 (ʇ) for the turned t symbol; use U+0074 for plain t when semantics matter
  • Serve pages as UTF-8; you can also type ʇ directly in UTF-8 source
  • Use IPA-capable fonts (e.g. Doulos SIL, Charis SIL) for reliable rendering
  • Prefer the precomposed character U+0287 over CSS transforms on plain t
  • Pick one entity style (hex or decimal) per project for consistency

Don’t

  • Substitute plain t or CSS rotation when ʇ is required for correct notation
  • Confuse ʇ (turned t) with ʈ (t retroflex hook)—they are different characters
  • Use the old incorrect CSS escape \00287—the correct value is \0287
  • Expect a named HTML entity—none exists for this character
  • Put CSS escape \0287 in HTML text nodes

Key Takeaways

1

Three references render ʇ; no named entity exists

&#x0287; &#647;
2

For CSS stylesheets, use the escape in the content property

\0287
3

Unicode U+0287 — LATIN SMALL LETTER TURNED T

4

Also called reverse t; used in IPA, linguistics, typography, and design

❓ Frequently Asked Questions

Use &#x0287; (hex), &#647; (decimal), or \0287 in CSS content. There is no named HTML entity for ʇ. In UTF-8 you can also type the character directly.
U+0287 (LATIN SMALL LETTER TURNED T). IPA Extensions block. Hex 0287, decimal 647. Also known as turned t or reverse t.
When writing IPA transcriptions, linguistic content, pronunciation guides, typography effects, or creative designs that require the turned t character.
No. Use numeric codes &#x0287; or &#647;, or the CSS entity \0287. In UTF-8 pages you can type ʇ directly.
ʇ (U+0287) is LATIN SMALL LETTER TURNED T—a rotated t shape. ʈ (U+0288) is LATIN SMALL LETTER T WITH RETROFLEX HOOK—a different IPA symbol with a hook. They are distinct Unicode characters with different glyphs and uses.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful