HTML Entity for Uppercase T Caron (Ť)

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

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

Unicode U+0164

Latin Extended-A

Hex Code Ť

Hexadecimal reference

HTML Code Ť

Decimal reference

Named Entity Ť

Most readable option

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

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0164";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0164;</p>
<p>Symbol (decimal): &#356;</p>
<p>Symbol (named): &Tcaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase T caron (Ť) and the named entity &Tcaron; are supported in all modern browsers as part of Latin Extended-A:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase T caron (Ť) in language and content contexts:

Large glyphŤ
SlovakŤažký (heavy)  |  Ťahanovce (place name)
Named entity&Tcaron; renders as Ť
Lowercaseť (U+0165) — use &tcaron;
Not the same asT (plain)  |  Š (S caron)  |  Ţ (cedilla)
Numeric refs&#x0164; &#356; &Tcaron; \0164

🧠 How It Works

1

Hexadecimal Code

&#x0164; uses the Unicode hexadecimal value 0164 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#356; uses the decimal Unicode value 356 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Named Entity

&Tcaron; is the named entity for T caron—readable in source HTML and the preferred option for Czech and Slovak language content.

HTML markup
4

CSS Entity

\0164 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ť. Unicode U+0164 sits in Latin Extended-A. Lowercase equivalent: U+0165 (ť, &tcaron;). Do not confuse with plain T (U+0054).

Use Cases

The uppercase T caron (Ť) is commonly used in:

🇵 Czech & Slovak

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.

📚 Language Learning

Teach correct spelling and pronunciation for Czech and Slovak, where Ť represents a palatalized or soft t sound.

🌐 Multilingual Sites

Support proper rendering of Slovak and Czech place names, personal names, and content on international websites.

📄 Typography & Publishing

Ensure correct character display in digital publications, dictionaries, and linguistic resources for Central European languages.

🔬 Linguistic & Academic

Used in Slavic language studies, orthography guides, and academic papers on Czech and Slovak linguistics.

♿ Accessibility

Using the correct character (U+0164) with proper lang attributes (e.g. lang="sk" or lang="cs") ensures assistive technologies pronounce content correctly.

🎨 CSS Generated Content

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 &Tcaron; for readable HTML when a named form is preferred
  • Set lang="cs" or lang="sk" on Czech/Slovak content for correct pronunciation hints
  • Use \0164 in CSS content when generating the symbol via pseudo-elements
  • Distinguish Ť (caron) from plain T (U+0054) and Ţ (cedilla)

Don’t

  • Substitute plain T when Ť is required in Czech or Slovak text
  • Confuse Ť (caron) with Ţ (cedilla) or plain T (U+0054)
  • Confuse Ť (T caron) with Š (S caron)—different letters
  • Put CSS escape \0164 in HTML text nodes
  • Use \00164 in CSS—the correct escape is \0164

Key Takeaways

1

The named entity is the most readable form

&Tcaron;
2

Numeric alternatives: hex and decimal

&#x0164; &#356;
3

Unicode U+0164 — LATIN CAPITAL LETTER T WITH CARON

4

Essential for Czech and Slovak; lowercase is ť (&tcaron;)

5

Previous: Uppercase T   Next: Uppercase T Cedilla

❓ Frequently Asked Questions

Use &Tcaron; (named), &#x0164; (hex), &#356; (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 (ť).
When displaying Czech or Slovak text that uses Ť at word starts or in proper nouns, in multilingual sites, language learning content, dictionaries, or when you need a reliable character reference. In UTF-8 pages you can type Ť directly.
The named HTML entity is &Tcaron;. You can also use &#356; or &#x0164;, or the CSS entity \0164.
Ť (U+0164) is T with caron, used in Czech and Slovak (e.g. Ťažký). T (U+0054) is the standard Latin uppercase letter. They are different characters—do not substitute one for the other in orthographic text.

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