HTML Entity for Uppercase T Hook (Ƭ)

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

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

Unicode U+01AC

Latin Extended-B

Hex Code Ƭ

Hexadecimal reference

HTML Code Ƭ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01AC";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01AC;</p>
<p>Symbol (decimal): &#428;</p>
<p>Symbol (direct): Ƭ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase 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 uppercase T hook (Ƭ) in phonetic and typographic contexts:

Large glyphƬ
Unicode nameLatin capital letter t with hook
Lowercaseƭ (U+01AD) — Latin small letter t with palatal hook
Not the same asT (plain)  |  Ⱦ (diagonal stroke)  |  Ʈ (retroflex hook)
Numeric refs&#x01AC; &#428; \01AC

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

\01AC 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+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:

🎤 Phonetic transcription

Extended phonetic notation where t-with-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 extended Latin letters such as Ƭ.

🌐 Multilingual sites

Support proper rendering of linguistic and minority-language content on international websites.

📄 Typography & publishing

Ensure correct character display in digital publications, orthography guides, and linguistic resources.

♿ Accessibility

Using the correct character (U+01AC) with proper lang attributes helps assistive technologies handle specialized text appropriately.

🎨 CSS generated content

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 (&#x01AC; or &#428;) when escaping is required
  • Use fonts that support Latin Extended-B characters
  • Use \01AC in CSS content when 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 T when Ƭ is required in orthographic text
  • Put CSS escape \01AC in HTML text nodes
  • Use U+001AC or CSS \001AC—the correct code is U+01AC and \01AC

Key Takeaways

1

Type Ƭ directly, or use hex/decimal references

&#x01AC; &#428;
2

For CSS stylesheets, use the escape in the content property

\01AC
3

Unicode U+01AC — LATIN CAPITAL LETTER T WITH HOOK

4

Phonetic & orthographic use; lowercase is ƭ (U+01AD)

❓ Frequently Asked Questions

Use &#x01AC; (hex), &#428; (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 (ƭ).
When displaying phonetic transcriptions, linguistic dictionaries, language documentation, multilingual sites, or orthographies that require Ƭ. In UTF-8 pages you can type Ƭ directly.
No. There is no named HTML entity for the uppercase T hook (Ƭ). Use numeric codes &#428; or &#x01AC;, or the CSS entity \01AC. In UTF-8 pages you can type Ƭ directly.
Ƭ (U+01AC) is Latin capital letter T with hook, used in phonetic notation and specialized orthographies. T (U+0054) is the standard Latin uppercase letter. They are different characters—do not substitute one for the other.

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