HTML Entity for Lowercase T Cedilla (ţ)

What You'll Learn
How to display the lowercase t with cedilla (ţ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0163 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 \0163. The named entity ţ is the most readable option in HTML source. Note: modern Romanian orthography uses ț (comma below) instead of ţ.
⚡ Quick Reference — Lowercase T Cedilla Entity
U+0163Latin Extended-A
ţHexadecimal reference
ţDecimal reference
ţMost readable option
Name Value
──────────── ──────────
Unicode U+0163
Hex code ţ
HTML code ţ
Named entity ţ
CSS code \0163
Meaning Latin small letter t with cedilla
Related U+0162 = Ţ (Ţ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase t cedilla (ţ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0163";
}
</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 lowercase t cedilla (ţ) and the named entity ţ are supported in all modern browsers as part of Latin Extended-A:
👀 Live Preview
See the lowercase t cedilla (ţ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ţ uses the Unicode hexadecimal value 0163 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ţ uses the decimal Unicode value 355 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
\0163 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+0163 sits in Latin Extended-A. Uppercase equivalent: U+0162 (Ţ, Ţ). Do not confuse with ť (caron), ț (comma below), or plain t (U+0074).
Use Cases
The lowercase t cedilla (ţ) is commonly used in:
Pre-1993 Romanian orthography used ţ (cedilla) in words like ţară and staţie. 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+0163) with proper lang attributes (e.g. lang="ro") helps assistive technologies handle content appropriately.
Using \0163 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 Lowercase T Comma Below
- Set
lang="ro"on Romanian content for correct language hints - Use
\0163in CSScontentwhen generating the symbol via pseudo-elements
Don’t
- Use ţ (cedilla) when modern Romanian ț (comma below) is required
- Confuse ţ (cedilla) with ť (caron) or plain t (U+0074)
- Put CSS escape
\0163in HTML text nodes - Double-encode entity references in dynamically generated HTML
- 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+0163 — LATIN SMALL LETTER T WITH CEDILLA
Historical Romanian; modern Romanian uses ț. Uppercase is Ţ (Ţ)
Previous: Lowercase T Caron (ť) Next: Lowercase T Comma Below
❓ Frequently Asked Questions
ţ (named), ţ (hex), ţ (decimal), or \0163 in CSS content. In UTF-8 you can also type ţ directly.U+0163 (LATIN SMALL LETTER T WITH CEDILLA). Latin Extended-A block. Hex 0163, decimal 355. Uppercase form is U+0162 (Ţ). Modern Romanian uses U+021B (ț) instead.ţ. You can also use ţ or ţ, or the CSS entity \0163.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
