HTML Entity for Lowercase T Cedilla (ţ)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+0163

What Is the Lowercase T Cedilla Entity?

Lowercase t with cedilla (ţ) is the Latin Extended-A character at Unicode U+0163 (LATIN SMALL LETTER T WITH CEDILLA). A cedilla hangs below the letter. It appears in historical Romanian text. Modern Romanian uses t with comma below (U+021B). HTML5 defines ţ.

Remember
Character     ţ
Unicode       U+0163
Named entity  ţ
Hex entity    ţ
Decimal       ţ
CSS escape    \0163

All of these produce the same glyph: ţ. Prefer ţ or a pasted ţ in UTF-8 pages; use numeric or CSS forms when you need them.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterţHTML text (UTF-8 default)
Named entityţHTML markup (readable choice)
Hex entityţHTML markup
Decimal entityţHTML markup
CSS escape\0163Stylesheet content

When to Use Which

SituationUse
Historical Romanian / cedilla UTF-8 textType or paste ţ
Readable entity in HTML sourceţ
Numeric entity requiredţ or ţ
Generated text via ::before / ::aftercontent: "\0163"
Modern Romanian spellingT comma below (U+021B, ț) — see Related Topics

Live Preview

Lowercase t with cedilla rendered in common contexts.

Sample words ţară, staţie
Large glyph ţ
Case pair Ţ ţ
With entities Named: ţ | Hex: ţ | Decimal: ţ
Not the same t (U+0074) · ț (comma below, modern RO)

Complete HTML Example

One page that shows lowercase t with cedilla with named, hex, decimal, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + CSS

Four ways to produce ţ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase T Cedilla (ţ) in HTML</title>
  <style>
    #point::after {
      content: "\0163";
    }
  </style>
</head>
<body>
  <p>T Cedilla using Named Entity: &tcedil;</p>
  <p>T Cedilla using Hex Code: &#x0163;</p>
  <p>T Cedilla using HTML Code: &#355;</p>
  <p id="point">T Cedilla using CSS Entity: </p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &tcedil; is the HTML5 named entity for U+0163. Clearest form in HTML source.

2. Hex: U+0163 → &#x0163; in HTML. Same glyph as named.

3. Decimal: same code point as 355 → &#355;. Same result.

4. CSS: use \0163 in content (not an HTML entity). #point::after appends that ţ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with the t cedilla entity.

Romanian

Cedilla vs comma below

Modern Romanian uses ț (U+021B), not ţ. Do not mix them in the same orthography.

Named

Prefer &tcedil;

HTML5 defines a named entity for this letter — use it for readable HTML.

CSS vs HTML

Do not mix escapes

\0163 belongs in CSS. &tcedil; / &#x0163; / &#355; belong in HTML.

Case

ţ vs Ţ

Uppercase is U+0162 (&Tcedil;) — a different code point from U+0163.

Semicolon

End references

Always finish with ; — write &tcedil;, not &tcedil.

UTF-8

Declare charset

If you paste ţ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Lowercase t with cedilla (U+0163) and its entity forms (&tcedil;, &#x0163;, &#355;, CSS \\0163) are supported in all mainstream browsers.

✓ Universal support

Lowercase T Cedilla (&#x0163;)

Use &tcedil;, paste ţ, or encode with hex, decimal, or CSS escape — same glyph everywhere.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0163 / entities Full support

Bottom line: Prefer &tcedil; or a pasted ţ in UTF-8 text. Use &#x0163; / &#355; when a numeric form is required, and \\0163 only inside CSS content.

Key Takeaways

  • Unicode: t with cedilla is U+0163 (decimal 355), Latin Extended-A.
  • HTML: prefer &tcedil;, or use &#x0163; / &#355;.
  • CSS: use \0163 inside content for generated text.
  • Use: historical Romanian — modern RO prefers ț (U+021B).

One line: U+0163 → &tcedil;, or &#x0163; / &#355; / CSS \0163.

Frequently Asked Questions

Use &tcedil; (named), &#x0163; (hex), &#355; (decimal), or the CSS escape \0163 in the content property. All render ţ. In UTF-8 files you can also type or paste ţ directly.
U+0163 (LATIN SMALL LETTER T WITH CEDILLA). Hex 0163, decimal 355. It belongs to Latin Extended-A. Modern Romanian orthography uses U+021B (t with comma below) instead.
Yes. HTML5 defines &tcedil; for this character. You can also use numeric references &#355; or &#x0163;.
Use it for historical Romanian text, multilingual content that specifically needs the cedilla form, linguistic examples, or CSS-generated content. For current Romanian spelling, prefer t with comma below (U+021B).
HTML entities (&tcedil;, &#355;, or &#x0163;) go in markup. The CSS escape \0163 is used in stylesheets (usually in the content property of ::before/::after). Both render ţ.
ţ is U+0163 (cedilla). ț is U+021B (comma below). They look similar but are different code points. Modern Romanian uses ț; older fonts and texts often used ţ.

Did you know?

Lowercase t with cedilla (ţ) is Unicode U+0163 (decimal 355) in Latin Extended-A. HTML5 defines the named entity &tcedil; — also usable as &#x0163; or &#355;. Modern Romanian prefers t with comma below (U+021B, ț).

Next: Lowercase T Comma Below

Learn the HTML entity for t with comma below — the modern Romanian counterpart to cedilla.

Lowercase T Comma Below tutorial →

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