HTML Entity for Uppercase T Stroke (Ŧ)

What You'll Learn
How to display the uppercase T with stroke (Ŧ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0166 in the Latin Extended-A block—a precomposed letter with a horizontal stroke through T. It is essential in Sámi orthographies (Northern Sami, Lule Sami, and Southern Sami) and pairs with lowercase ŧ (U+0167).
Render it with Ŧ, Ŧ, Ŧ, or CSS escape \0166. The named entity Ŧ is the most readable option in HTML source. Do not confuse Ŧ with plain T (U+0054), Ť (caron), or Ⱦ (diagonal stroke).
⚡ Quick Reference — Uppercase T Stroke Entity
U+0166Latin Extended-A
ŦHexadecimal reference
ŦDecimal reference
ŦMost readable option
Name Value
──────────── ──────────
Unicode U+0166
Hex code Ŧ
HTML code Ŧ
Named entity Ŧ
CSS code \0166
Meaning Latin capital letter t with stroke
Related U+0167 = ŧ (ŧ)
U+0054 = T (plain—not stroked)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase T stroke (Ŧ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0166";
}
</style>
</head>
<body>
<p>Symbol (hex): Ŧ</p>
<p>Symbol (decimal): Ŧ</p>
<p>Symbol (named): Ŧ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase T stroke (Ŧ) and the named entity Ŧ are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase T stroke (Ŧ) in language and typography contexts:
🧠 How It Works
Hexadecimal Code
Ŧ uses the Unicode hexadecimal value 0166 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ŧ uses the decimal Unicode value 358 to display the same character. A common method when a numeric reference is needed.
Named Entity
Ŧ is the named entity for T stroke—readable in source HTML and the preferred option for Sámi and multilingual content.
CSS Entity
\0166 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ŧ. Unicode U+0166 sits in Latin Extended-A. Lowercase equivalent: U+0167 (ŧ, ŧ). Do not confuse with plain T (U+0054), Ť (caron), or Ⱦ (diagonal stroke).
Use Cases
The uppercase T stroke (Ŧ) is commonly used in:
Essential for correct spelling in Northern Sami, Lule Sami, and Southern Sami orthographies where Ŧ is a distinct letter.
Support proper rendering of Sámi names, place names, and content on international websites.
Teach correct spelling and pronunciation for Sámi and related Nordic language content.
Pronunciation keys and linguistic resources that include stroked T characters.
Ensure correct character display in digital publications and multilingual documents.
Using U+0166 with proper lang attributes (e.g. lang="se") helps assistive technologies pronounce content correctly.
Using \0166 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
Ŧfor readable HTML when a named form is preferred - Set appropriate
langattributes on Sámi content for correct pronunciation hints - Use
\0166in CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ŧ (horizontal stroke) from Ⱦ (diagonal stroke) and plain T (U+0054)
Key Takeaways
The named entity is the most readable form
ŦNumeric alternatives: hex and decimal
Ŧ ŦUnicode U+0166 — LATIN CAPITAL LETTER T WITH STROKE
Essential for Sámi orthographies; lowercase is ŧ (ŧ)
Previous: Uppercase T Retroflex Hook (Ʈ) Next: Uppercase Thorn
❓ Frequently Asked Questions
Ŧ (named), Ŧ (hex), Ŧ (decimal), or \0166 in CSS content. In UTF-8 you can also type Ŧ directly.U+0166 (LATIN CAPITAL LETTER T WITH STROKE). Latin Extended-A block. Hex 0166, decimal 358. Used in Sámi orthographies. Lowercase form is U+0167 (ŧ).Ŧ. You can also use Ŧ or Ŧ, or the CSS entity \0166.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
