HTML Entity for Uppercase T Hook (Ƭ)

What You'll Learn
How to display the uppercase T with hook (Ƭ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01AC (LATIN CAPITAL LETTER T WITH HOOK) in the Latin Extended-B block—a precomposed letter with a hook on the stem. It pairs with lowercase ƭ (U+01AD) and appears in phonetic notation and some African and other language orthographies.
Render it with Ƭ, Ƭ, or CSS escape \01AC. There is no named HTML entity for this character. In UTF-8 documents you can also type Ƭ directly. Do not confuse Ƭ with plain T (U+0054), Ⱦ (diagonal stroke), or Ʈ (retroflex hook).
⚡ Quick Reference — Uppercase T Hook Entity
U+01ACLatin Extended-B
ƬHexadecimal reference
ƬDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01AC
Hex code Ƭ
HTML code Ƭ
Named entity (none)
CSS code \01AC
Meaning Latin capital letter t with hook
Related U+01AD = ƭ (lowercase t hook)
U+0054 = T (plain—not hooked)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase T hook (Ƭ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01AC";
}
</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 uppercase T hook (Ƭ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the uppercase T hook (Ƭ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
Ƭ uses the Unicode hexadecimal value 01AC to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƭ uses the decimal Unicode value 428 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
\01AC 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+01AC sits in Latin Extended-B. Lowercase equivalent: U+01AD (ƭ). Do not confuse with plain T (U+0054), Ⱦ (diagonal stroke), or Ʈ (retroflex hook).
Use Cases
The uppercase T hook (Ƭ) is commonly used in:
Extended phonetic notation where t-with-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 extended Latin letters such as Ƭ.
Support proper rendering of linguistic and minority-language content on international websites.
Ensure correct character display in digital publications, orthography guides, and linguistic resources.
Using the correct character (U+01AC) with proper lang attributes helps assistive technologies handle specialized text appropriately.
Using \01AC in the CSS content property to insert Ƭ via pseudo-elements.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type Ƭ directly in UTF-8 source
- Use numeric references (
ƬorƬ) when escaping is required - Use fonts that support Latin Extended-B characters
- Use
\01ACin CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ƭ (hook) from plain T (U+0054) and Ʈ (retroflex hook)
Don’t
- Describe Ƭ as a core IPA letter—it is an extended Latin letter used in phonetic and orthographic contexts
- Confuse Ƭ with Ʈ (retroflex hook) or Ⱦ (diagonal stroke)
- Substitute plain
Twhen Ƭ is required in orthographic text - Put CSS escape
\01ACin HTML text nodes - Use
U+001ACor CSS\001AC—the correct code isU+01ACand\01AC
Key Takeaways
Type Ƭ directly, or use hex/decimal references
Ƭ ƬFor CSS stylesheets, use the escape in the content property
\01ACUnicode U+01AC — LATIN CAPITAL LETTER T WITH HOOK
Phonetic & orthographic use; lowercase is ƭ (U+01AD)
Previous: Uppercase T Diagonal Stroke (Ⱦ) Next: Uppercase T Retroflex Hook
❓ Frequently Asked Questions
Ƭ (hex), Ƭ (decimal), or \01AC in CSS content. There is no named HTML entity for Ƭ. In UTF-8 you can also type Ƭ directly.U+01AC (LATIN CAPITAL LETTER T WITH HOOK). Latin Extended-B block. Hex 01AC, decimal 428. Lowercase form is U+01AD (ƭ).Ƭ or Ƭ, or the CSS entity \01AC. In UTF-8 pages you can type Ƭ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
