HTML Entity for Lowercase T Hook (ƭ)

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

What You'll Learn

How to display the lowercase t with hook (ƭ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01AD (LATIN SMALL LETTER T WITH PALATAL HOOK) in the Latin Extended-B block. The palatal hook marks a distinct alveolar or palatalized t sound used in phonetic notation and some African and other language orthographies.

Render it with ƭ, ƭ, or CSS escape \01AD. There is no named HTML entity for this character. In UTF-8 documents you can also type ƭ directly.

⚡ Quick Reference — Lowercase T Hook Entity

Unicode U+01AD

Latin Extended-B

Hex Code ƭ

Hexadecimal reference

HTML Code ƭ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

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

🌐 Browser Support

The lowercase t 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 hook (ƭ) in phonetic and typographic contexts:

Large glyphƭ
PhoneticsExtended notation where t-with-palatal-hook marks a distinct alveolar or palatalized sound
Unicode blockLatin Extended-B (U+0180–U+024F)
Not the same ast (plain)  |  ȶ (curl)  |  ƫ (alternate t palatal hook)
Numeric refs&#x01AD; &#429; \01AD

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#429; uses the decimal Unicode value 429 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

\01AD 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+01AD sits in Latin Extended-B. Do not confuse with plain t (U+0074), ȶ (t curl), or ƫ (alternate palatal hook form).

Use Cases

The lowercase t hook (ƭ) is commonly used in:

🎤 Phonetic transcription

Extended phonetic notation where t-with-palatal-hook represents a distinct alveolar or palatalized sound.

📚 Language documentation

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

📖 Dictionaries

Pronunciation guides and reference works that include phonetic symbols such as ƭ.

📐 Typography

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

♿ Accessibility

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

⚙ Programmatic HTML

When generating phonetic markup, using &#429; or &#x01AD; ensures correct output.

🎨 CSS Generated Content

Using \01AD in the CSS content property to insert ƭ via pseudo-elements.

💡 Best Practices

Do

  • Use U+01AD (ƭ) for t with palatal hook; use U+0074 for plain t when semantics matter
  • 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
  • Prefer the precomposed character U+01AD over combining forms
  • Pick one entity style (hex or decimal) per project for consistency

Don’t

  • Substitute plain t when ƭ is required for correct notation
  • Confuse ƭ (palatal hook) with ȶ (curl) or plain t (U+0074)
  • Expect a named HTML entity—none exists for this character
  • Use U+001AD or CSS \001AD—the correct code is U+01AD and \01AD
  • Put CSS escape \01AD in HTML text nodes

Key Takeaways

1

Type ƭ directly, or use hex/decimal references

&#x01AD; &#429;
2

For CSS stylesheets, use the escape in the content property

\01AD
3

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

4

Used in phonetic notation and some language orthographies on the web

❓ Frequently Asked Questions

Use &#x01AD; (hex), &#429; (decimal), or \01AD in CSS content. There is no named HTML entity for ƭ. In UTF-8 you can also type the character directly.
U+01AD (LATIN SMALL LETTER T WITH PALATAL HOOK). Latin Extended-B block. Hex 01AD, decimal 429. Used in phonetic notation and some orthographies.
When displaying phonetic transcriptions, linguistic dictionaries, language documentation, or orthographies that require the t-with-palatal-hook symbol. In UTF-8 pages you can type ƭ directly.
No. Use numeric codes &#x01AD; or &#429;, or the CSS entity \01AD. In UTF-8 pages you can type ƭ directly.
U+01AD (ƭ) is t with palatal hook. U+0236 (ȶ) is t with curl. They are different Unicode code points in Latin Extended-B, used in different phonetic and orthographic contexts. 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