HTML Entity for Lowercase T Palatal Hook (ƫ)

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
U+01ABLatin Extended-B
ƫHexadecimal reference
ƫDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01AB";
}
</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 palatal hook (ƫ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase t palatal hook (ƫ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ƫ uses the Unicode hexadecimal value 01AB to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƫ uses the decimal Unicode value 427 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
\01AB 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+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:
Extended phonetic notation and orthographies where U+01AB represents a palatalized or related t sound.
Academic papers, dictionaries, and linguistic resources for languages that use this letter form.
Pronunciation guides and typographic specimens that include Latin Extended-B symbols such as ƫ.
When a font or design includes this character. Use numeric references to output it reliably in HTML or CSS.
Using U+01AB ensures screen readers interpret ƫ as one character, not t plus a diacritic mark.
When generating phonetic markup, using ƫ or ƫ ensures correct output.
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
tor 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+001ABor CSS\001AB—the correct code isU+01ABand\01AB - Put CSS escape
\01ABin HTML text nodes
Key Takeaways
Type ƫ directly, or use hex/decimal references
ƫ ƫFor CSS stylesheets, use the escape in the content property
\01ABUnicode U+01AB — LATIN SMALL LETTER T WITH PALATAL HOOK
Distinct from U+01AD (ƭ) despite the shared Unicode character name
Previous: Lowercase T Latin (ͭ) Next: Lowercase T Retroflex Hook
❓ Frequently Asked Questions
ƫ (hex), ƫ (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.ƫ or ƫ, or the CSS entity \01AB. In UTF-8 pages you can type ƫ directly.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.
8 people found this page helpful
