HTML Entity for Lowercase T Hook (ƭ)

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
U+01ADLatin Extended-B
ƭHexadecimal reference
ƭDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01AD";
}
</style>
</head>
<body>
<p>Symbol (hex): ƭ</p>
<p>Symbol (decimal): ƭ</p>
<p>Symbol (direct): ƭ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase t hook (ƭ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase t hook (ƭ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ƭ uses the Unicode hexadecimal value 01AD to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƭ uses the decimal Unicode value 429 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type ƭ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this letter.
CSS Entity
\01AD is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Extended phonetic notation where t-with-palatal-hook represents a distinct alveolar or palatalized sound.
Academic papers, orthographies, and linguistic resources for languages that use this letter form.
Pronunciation guides and reference works that include phonetic symbols such as ƭ.
When a font or design includes this Latin Extended-B character. Use numeric references to output it reliably in HTML or CSS.
Using U+01AD ensures screen readers interpret ƭ as one character, not t plus a diacritic mark.
When generating phonetic markup, using ƭ or ƭ ensures correct output.
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
twhen ƭ 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+001ADor CSS\001AD—the correct code isU+01ADand\01AD - Put CSS escape
\01ADin HTML text nodes
Key Takeaways
Type ƭ directly, or use hex/decimal references
ƭ ƭFor CSS stylesheets, use the escape in the content property
\01ADUnicode U+01AD — LATIN SMALL LETTER T WITH PALATAL HOOK
Used in phonetic notation and some language orthographies on the web
Previous: Lowercase T Curl (ȶ) Next: Lowercase T Latin
❓ Frequently Asked Questions
ƭ (hex), ƭ (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.ƭ or ƭ, 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.
8 people found this page helpful
