HTML Entity for Uppercase T Caron (Ť)

What You'll Learn
How to display the uppercase T with caron (Ť) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0164 in the Latin Extended-A block. The caron (hček) marks a soft t in Czech and Slovak—used at word starts (e.g. Ťažký — heavy/difficult) and in place names such as Ťahanovce.
Render it with Ť, Ť, Ť, or CSS escape \0164. The named entity Ť is the most readable option in HTML source.
⚡ Quick Reference — Uppercase T Caron Entity
U+0164Latin Extended-A
ŤHexadecimal reference
ŤDecimal reference
ŤMost readable option
Name Value
──────────── ──────────
Unicode U+0164
Hex code Ť
HTML code Ť
Named entity Ť
CSS code \0164
Meaning Latin capital letter T with caron
Related U+0165 = ť (ť)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase T caron (Ť) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0164";
}
</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 caron (Ť) and the named entity Ť are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase T caron (Ť) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ť uses the Unicode hexadecimal value 0164 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ť uses the decimal Unicode value 356 to display the same character. A common method when a numeric reference is needed.
Named Entity
Ť is the named entity for T caron—readable in source HTML and the preferred option for Czech and Slovak language content.
CSS Entity
\0164 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+0164 sits in Latin Extended-A. Lowercase equivalent: U+0165 (ť, ť). Do not confuse with plain T (U+0054).
Use Cases
The uppercase T caron (Ť) is commonly used in:
Essential for correct Czech and Slovak spelling at sentence starts and in proper nouns (e.g. Ťažký, Ťahanovce). Use the entity or UTF-8 for proper display.
Teach correct spelling and pronunciation for Czech and Slovak, where Ť represents a palatalized or soft t sound.
Support proper rendering of Slovak and Czech place names, personal names, and content on international websites.
Ensure correct character display in digital publications, dictionaries, and linguistic resources for Central European languages.
Used in Slavic language studies, orthography guides, and academic papers on Czech and Slovak linguistics.
Using the correct character (U+0164) with proper lang attributes (e.g. lang="sk" or lang="cs") ensures assistive technologies pronounce content correctly.
Using \0164 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
lang="cs"orlang="sk"on Czech/Slovak content for correct pronunciation hints - Use
\0164in CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ť (caron) from plain T (U+0054) and Ţ (cedilla)
Key Takeaways
The named entity is the most readable form
ŤNumeric alternatives: hex and decimal
Ť ŤUnicode U+0164 — LATIN CAPITAL LETTER T WITH CARON
Essential for Czech and Slovak; lowercase is ť (ť)
Previous: Uppercase T Next: Uppercase T Cedilla
❓ Frequently Asked Questions
Ť (named), Ť (hex), Ť (decimal), or \0164 in CSS content. In UTF-8 you can also type Ť directly.U+0164 (LATIN CAPITAL LETTER T WITH CARON). Latin Extended-A block. Hex 0164, decimal 356. Used in Czech and Slovak. Lowercase form is U+0165 (ť).Ť. You can also use Ť or Ť, or the CSS entity \0164.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
