HTML Entity for Lowercase T Caron (ť)

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

What You'll Learn

How to display the lowercase t with caron (ť) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0165 in the Latin Extended-A block. The caron (hček) marks a soft t in Czech and Slovak—common in words like mať (to have), ťažký (heavy/difficult), and patří (belongs).

Render it with ť, ť, ŭ, or CSS escape \0165. The named entity ť is the most readable option in HTML source.

⚡ Quick Reference — Lowercase T Caron Entity

Unicode U+0165

Latin Extended-A

Hex Code ť

Hexadecimal reference

HTML Code ŭ

Decimal reference

Named Entity ť

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0165
Hex code       ť
HTML code      ŭ
Named entity   ť
CSS code       \0165
Meaning        Latin small letter t with caron
Related        U+0164 = Ť (Ť)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the lowercase 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: "\0165";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0165;</p>
<p>Symbol (decimal): &#365;</p>
<p>Symbol (named): &tcaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase 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 lowercase t caron (ť) in language and content contexts:

Large glyphť
Slovakmať (to have)  |  ťažký (heavy)
Czechťukat (knock)  |  patří (belongs)
Named entity&tcaron; renders as ť
UppercaseŤ (U+0164) — use &Tcaron;
Not the same ast (plain)  |  ţ (cedilla)
Numeric refs&#x0165; &#365; &tcaron; \0165

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
4

CSS Entity

\0165 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+0165 sits in Latin Extended-A. Uppercase equivalent: U+0164 (Ť, &Tcaron;). Do not confuse with plain t (U+0074) or ţ (cedilla).

Use Cases

The lowercase t caron (ť) is commonly used in:

🇵 Slovak

Essential for correct Slovak spelling (e.g. mať, ťažký). The soft t is a distinctive feature of Slovak orthography.

🇨🇿 Czech

Used in Czech words such as ťukat and patří, alongside other caron-marked letters (š, č, ř).

📚 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 Czech and Slovak names, place names, and content on international websites.

📄 Typography & Publishing

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

♿ Accessibility

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

🎨 CSS Generated Content

Using \0165 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="sk" or lang="cs" on Czech/Slovak content for correct pronunciation hints
  • Use \0165 in CSS content when generating the symbol via pseudo-elements
  • Distinguish ť (caron) from ţ (cedilla) and plain t (U+0074)

Don’t

  • Substitute plain t when ť is required in Czech or Slovak text
  • Confuse ť (caron) with ţ (cedilla) or plain t (U+0074)
  • Put CSS escape \0165 in HTML text nodes
  • Double-encode entity references in dynamically generated HTML
  • Omit lang attributes on pages with Czech or Slovak content

Key Takeaways

1

The named entity is the most readable form

&tcaron;
2

Numeric alternatives: hex and decimal

&#x0165; &#365;
3

Unicode U+0165 — LATIN SMALL LETTER T WITH CARON

4

Essential for Slovak and Czech; uppercase is Ť (&Tcaron;)

❓ Frequently Asked Questions

Use &tcaron; (named), &#x0165; (hex), &#365; (decimal), or \0165 in CSS content. In UTF-8 you can also type ť directly.
U+0165 (LATIN SMALL LETTER T WITH CARON). Latin Extended-A block. Hex 0165, decimal 365. Used in Czech and Slovak orthography. Uppercase form is U+0164 (Ť).
When displaying Czech or Slovak text that uses ť, 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 &#365; or &#x0165;, or the CSS entity \0165.
HTML entity (&tcaron;, &#365;, or &#x0165;) is used in HTML content; CSS entity \0165 is used in stylesheets in the content property of pseudo-elements. Both produce ť.

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