HTML Entity for Lowercase T Palatal Hook (ƫ)

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

What You'll Learn

How to display the lowercase t with palatal hook (ƫ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01AB (LATIN SMALL LETTER T WITH PALATAL HOOK) in the Latin Extended-B block—a distinct letter form used in phonetic notation and some language orthographies for a palatalized or related t sound.

Render it with ƫ, ƫ, or CSS escape \01AB. There is no named HTML entity. Do not confuse U+01AB (ƫ) with U+01AD (ƭ) on the t hook page—they share a Unicode name but are different glyphs and code points.

⚡ Quick Reference — Lowercase T Palatal Hook Entity

Unicode U+01AB

Latin Extended-B

Hex Code ƫ

Hexadecimal reference

HTML Code ƫ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01AB
Hex code       ƫ
HTML code      ƫ
Named entity   (none)
CSS code       \01AB
Meaning        Latin small letter t with palatal hook
Related        U+01AD = ƭ (alternate palatal-hook form)
               U+0074 = t (plain lowercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase t palatal hook (ƫ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01AB";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01AB;</p>
<p>Symbol (decimal): &#427;</p>
<p>Symbol (direct): ƫ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase t palatal hook (ƫ) is supported in modern browsers when the font includes Latin Extended-B glyphs:

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

👀 Live Preview

See the lowercase t palatal hook (ƫ) in phonetic and typographic contexts:

Large glyphƫ
PhoneticsLatin Extended-B letter for palatalized or related t sounds in orthographies and notation
Unicode blockLatin Extended-B (U+0180–U+024F)
Not the same ast (plain)  |  ƭ (U+01AD)  |  ȶ (curl)
Numeric refs&#x01AB; &#427; \01AB

🧠 How It Works

1

Hexadecimal Code

&#x01AB; uses the Unicode hexadecimal value 01AB to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#427; uses the decimal Unicode value 427 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type ƫ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this letter.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: ƫ. Unicode U+01AB sits in Latin Extended-B. Do not confuse with plain t (U+0074), ƭ (U+01AD), or ȶ (t curl).

Use Cases

The lowercase t palatal hook (ƫ) is commonly used in:

🎤 Phonetic transcription

Extended phonetic notation and orthographies where U+01AB represents a palatalized or related t sound.

📚 Language documentation

Academic papers, dictionaries, and linguistic resources for languages that use this letter form.

📖 Reference works

Pronunciation guides and typographic specimens that include Latin Extended-B symbols such as ƫ.

📐 Typography

When a font or design includes this character. Use numeric references to output it reliably in HTML or CSS.

♿ Accessibility

Using U+01AB ensures screen readers interpret ƫ as one character, not t plus a diacritic mark.

⚙ Programmatic HTML

When generating phonetic markup, using &#427; or &#x01AB; ensures correct output.

🎨 CSS Generated Content

Using \01AB in the CSS content property to insert ƫ via pseudo-elements.

💡 Best Practices

Do

  • Use U+01AB (ƫ) when your source requires this specific code point
  • Serve pages as UTF-8; you can also type ƫ directly in UTF-8 source
  • Use fonts that support Latin Extended-B for phonetic and linguistic text
  • Distinguish U+01AB from U+01AD (ƭ) and plain t (U+0074)
  • Pick one entity style (hex or decimal) per project for consistency

Don’t

  • Substitute plain t or U+01AD when U+01AB is required
  • Assume U+01AB and U+01AD are interchangeable—they are different glyphs
  • Expect a named HTML entity—none exists for this character
  • Use U+001AB or CSS \001AB—the correct code is U+01AB and \01AB
  • Put CSS escape \01AB in HTML text nodes

Key Takeaways

1

Type ƫ directly, or use hex/decimal references

&#x01AB; &#427;
2

For CSS stylesheets, use the escape in the content property

\01AB
3

Unicode U+01AB — LATIN SMALL LETTER T WITH PALATAL HOOK

4

Distinct from U+01AD (ƭ) despite the shared Unicode character name

❓ Frequently Asked Questions

Use &#x01AB; (hex), &#427; (decimal), or \01AB in CSS content. There is no named HTML entity for ƫ. In UTF-8 you can also type the character directly.
U+01AB (LATIN SMALL LETTER T WITH PALATAL HOOK). Latin Extended-B block. Hex 01AB, decimal 427. Used in phonetic notation and some orthographies.
When displaying phonetic transcriptions, linguistic dictionaries, language documentation, or orthographies that specifically require U+01AB. In UTF-8 pages you can type ƫ directly.
No. Use numeric codes &#x01AB; or &#427;, or the CSS entity \01AB. In UTF-8 pages you can type ƫ directly.
Both are named LATIN SMALL LETTER T WITH PALATAL HOOK in Unicode, but they are separate code points with different glyphs: U+01AB (ƫ) and U+01AD (ƭ). Use the code point required by your source text or orthography—they are not interchangeable.

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