HTML Entity for Uppercase T Retroflex Hook (Ʈ)

What You'll Learn
How to display the uppercase T with retroflex hook (Ʈ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01AE (LATIN CAPITAL LETTER T WITH RETROFLEX HOOK) in the Latin Extended-B block—the uppercase counterpart to the IPA symbol ʈ (U+0288, voiceless retroflex plosive).
Render it with Ʈ, Ʈ, or CSS escape \01AE. 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), Ƭ (hook), or Ư (U with horn).
⚡ Quick Reference — Uppercase T Retroflex Hook Entity
U+01AELatin Extended-B
ƮHexadecimal reference
ƮDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01AE
Hex code Ʈ
HTML code Ʈ
Named entity (none)
CSS code \01AE
Meaning Latin capital letter t with retroflex hook
Related U+0288 = ʈ (lowercase IPA pair)
U+0054 = T (plain—not retroflex)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase T retroflex hook (Ʈ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01AE";
}
</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 retroflex hook (Ʈ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the uppercase T retroflex hook (Ʈ) in linguistic and typographic contexts:
🧠 How It Works
Hexadecimal Code
Ʈ uses the Unicode hexadecimal value 01AE to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ʈ uses the decimal Unicode value 430 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
\01AE is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Use Cases
The uppercase T retroflex hook (Ʈ) is commonly used in:
Capital-form retroflex T in phonetic and orthographic materials paired with IPA ʈ.
Hindi, Tamil, and related languages where retroflex plosive sounds are documented with extended Latin letters.
Pronunciation guides and reference works that include retroflex consonant notation.
Swedish and other languages with retroflex plosive sounds in linguistic and academic content.
Research papers and scholarly publications on phonetics and language documentation.
Using the correct character (U+01AE) with proper lang attributes helps assistive technologies handle specialized text appropriately.
Using \01AE 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 and IPA Extensions glyphs
- Use
\01AEin CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ʈ (retroflex hook) from Ƭ (hook) and plain T (U+0054)
Don’t
- Confuse Ʈ with Ư (U+01AF is U with horn, Vietnamese—not a lowercase of Ʈ)
- Substitute plain
Tor Ƭ when Ʈ is required - Assume Ʈ and ʈ share the same Unicode block—uppercase is Latin Extended-B, lowercase is IPA Extensions
- Put CSS escape
\01AEin HTML text nodes - Use
U+001AEor CSS\001AE—the correct code isU+01AEand\01AE
Key Takeaways
Type Ʈ directly, or use hex/decimal references
Ʈ ƮFor CSS stylesheets, use the escape in the content property
\01AEUnicode U+01AE — LATIN CAPITAL LETTER T WITH RETROFLEX HOOK
Uppercase of IPA ʈ (U+0288); not Ư (U with horn)
Previous: Uppercase T Hook (Ƭ) Next: Uppercase T Stroke
❓ Frequently Asked Questions
Ʈ (hex), Ʈ (decimal), or \01AE in CSS content. There is no named HTML entity for Ʈ. In UTF-8 you can also type Ʈ directly.U+01AE (LATIN CAPITAL LETTER T WITH RETROFLEX HOOK). Latin Extended-B block. Hex 01AE, decimal 430. Lowercase form is U+0288 (ʈ) in IPA Extensions.Ʈ or Ʈ, or the CSS entity \01AE. 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
