HTML Entity for Uppercase T Cedilla (Ţ)

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
U+0162Latin Extended-A
ŢHexadecimal reference
ŢDecimal reference
ŢMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0162";
}
</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 cedilla (Ţ) and the named entity Ţ are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the uppercase T cedilla (Ţ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ţ uses the Unicode hexadecimal value 0162 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ţ uses the decimal Unicode value 354 to display the same character. A common method when a numeric reference is needed.
Named Entity
Ţ is the named entity for T cedilla—readable in source HTML and useful for legacy Romanian and multilingual content.
CSS Entity
\0162 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+0162 sits in Latin Extended-A. Lowercase equivalent: U+0163 (ţ, ţ). Do not confuse with Ť (caron), Ț (comma below), or plain T (U+0054).
Use Cases
The uppercase T cedilla (Ţ) is commonly used in:
Pre-1993 Romanian orthography used Ţ (cedilla) at word starts in words like Ţară. Still appears in older books, scans, and digitized archives.
Teach the difference between cedilla (Ţ) and comma-below (Ț) forms of Romanian t, and how Unicode encodes each separately.
Support proper rendering of legacy Romanian text, Gagauz, and other content that uses the cedilla form on international websites.
Ensure correct character display when reproducing historical documents, dictionaries, and academic publications.
When converting legacy encoded text to UTF-8, entity references help preserve Ţ reliably across systems and editors.
Using the correct character (U+0162) with proper lang attributes (e.g. lang="ro") helps assistive technologies handle content appropriately.
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
Ţ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
\0162in CSScontentwhen 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
\0162in HTML text nodes - Assume cedilla and comma-below forms are interchangeable in Unicode
Key Takeaways
The named entity is the most readable form
ŢNumeric alternatives: hex and decimal
Ţ ŢUnicode U+0162 — LATIN CAPITAL LETTER T WITH CEDILLA
Historical Romanian; modern Romanian uses Ț. Lowercase is ţ (ţ)
Previous: Uppercase T Caron (Ť) Next: Uppercase T Comma Below
❓ Frequently Asked Questions
Ţ (named), Ţ (hex), Ţ (decimal), or \0162 in CSS content. In UTF-8 you can also type Ţ directly.Ţ. You can also use Ţ or Ţ, or the CSS entity \0162.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
