HTML Entity for Uppercase T Cedilla (Ţ)

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

What You'll Learn

How to display the uppercase T with cedilla (Ţ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0162 in the Latin Extended-A block. The cedilla marks a palatalized t sound—found in historical Romanian spelling such as Ţară (country), Staţie (station), and Naţiune (nation).

Render it with Ţ, Ţ, Ţ, or CSS escape \0162. The named entity Ţ is the most readable option in HTML source. Note: modern Romanian orthography uses Ț (comma below) instead of Ţ.

⚡ Quick Reference — Uppercase T Cedilla Entity

Unicode U+0162

Latin Extended-A

Hex Code Ţ

Hexadecimal reference

HTML Code Ţ

Decimal reference

Named Entity Ţ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0162
Hex code       Ţ
HTML code      Ţ
Named entity   Ţ
CSS code       \0162
Meaning        Latin capital letter T with cedilla
Related        U+0163 = ţ (ţ)
               U+021A = Ț (comma below—modern Romanian)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase T cedilla (Ţ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

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

🌐 Browser Support

The uppercase T cedilla (Ţ) and the named entity &Tcedil; 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 cedilla (Ţ) in language and content contexts:

Large glyphŢ
Romanian (historical)Ţară (country)  |  Staţie (station)
Named entity&Tcedil; renders as Ţ
Lowercaseţ (U+0163) — use &tcedil;
Not the same asT (plain)  |  Ť (caron)  |  Ț (comma below)
Numeric refs&#x0162; &#354; &Tcedil; \0162

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Tcedil; is the named entity for T cedilla—readable in source HTML and useful for legacy Romanian and multilingual content.

HTML markup
4

CSS Entity

\0162 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+0162 sits in Latin Extended-A. Lowercase equivalent: U+0163 (ţ, &tcedil;). Do not confuse with Ť (caron), Ț (comma below), or plain T (U+0054).

Use Cases

The uppercase T cedilla (Ţ) is commonly used in:

🇷🇴 Historical Romanian

Pre-1993 Romanian orthography used Ţ (cedilla) at word starts in words like Ţară. Still appears in older books, scans, and digitized archives.

📚 Language & Linguistics

Teach the difference between cedilla (Ţ) and comma-below (Ț) forms of Romanian t, and how Unicode encodes each separately.

🌐 Multilingual Sites

Support proper rendering of legacy Romanian text, Gagauz, and other content that uses the cedilla form on international websites.

📄 Typography & Publishing

Ensure correct character display when reproducing historical documents, dictionaries, and academic publications.

🔍 Data Migration

When converting legacy encoded text to UTF-8, entity references help preserve Ţ reliably across systems and editors.

♿ Accessibility

Using the correct character (U+0162) with proper lang attributes (e.g. lang="ro") helps assistive technologies handle content appropriately.

🎨 CSS Generated Content

Using \0162 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 &Tcedil; for readable HTML when a named form is preferred
  • Use Ț (comma below) for modern Romanian orthography—see Uppercase T Comma Below
  • Set lang="ro" on Romanian content for correct language hints
  • Use \0162 in CSS content when generating the symbol via pseudo-elements

Don’t

  • Use Ţ (cedilla) when modern Romanian Ț (comma below) is required
  • Describe Ţ as a Turkish character—Turkish does not use T with cedilla
  • Confuse Ţ (cedilla) with Ť (caron) or plain T (U+0054)
  • Put CSS escape \0162 in HTML text nodes
  • Assume cedilla and comma-below forms are interchangeable in Unicode

Key Takeaways

1

The named entity is the most readable form

&Tcedil;
2

Numeric alternatives: hex and decimal

&#x0162; &#354;
3

Unicode U+0162 — LATIN CAPITAL LETTER T WITH CEDILLA

4

Historical Romanian; modern Romanian uses Ț. Lowercase is ţ (&tcedil;)

❓ Frequently Asked Questions

Use &Tcedil; (named), &#x0162; (hex), &#354; (decimal), or \0162 in CSS content. In UTF-8 you can also type Ţ directly.
U+0162 (LATIN CAPITAL LETTER T WITH CEDILLA). Latin Extended-A block. Hex 0162, decimal 354. Lowercase form is U+0163 (ţ). Modern Romanian uses U+021A (Ț) instead.
When displaying legacy Romanian text, archival documents, Gagauz content, or multilingual pages that use Ţ. For modern Romanian orthography, use Ț (comma below) instead. In UTF-8 pages you can type Ţ directly when the cedilla form is required.
The named HTML entity is &Tcedil;. You can also use &#354; or &#x0162;, or the CSS entity \0162.
Ţ (U+0162) is T with cedilla, used in historical Romanian spelling (e.g. Ţară). Ț (U+021A) is T with comma below, used in modern Romanian orthography. They are different Unicode characters with different diacritic marks—do not substitute one for the other.

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