HTML Entity for Uppercase T Comma Below (Ț)

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

What You'll Learn

How to display the uppercase t with comma below (Ț) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+021A in the Latin Extended-B block. It is the standard capital letter for modern Romanian (e.g. Țară — country, Stație — station), representing a palatalized or affricate t sound.

Render it with Ț, Ț, or CSS escape \021A. There is no named HTML entity for this character. In UTF-8 documents you can also type Ț directly. Do not confuse Ț with historical Ţ (T with cedilla, U+0162)—a different character.

⚡ Quick Reference — Uppercase T Comma Below Entity

Unicode U+021A

Latin Extended-B

Hex Code Ț

Hexadecimal reference

HTML Code Ț

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+021A
Hex code       Ț
HTML code      Ț
Named entity   (none)
CSS code       \021A
Meaning        Latin capital letter t with comma below
Related        U+021B = ț (lowercase)
               U+0162 = Ţ (t cedilla—legacy)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase t comma below (Ț) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\021A";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x021A;</p>
<p>Symbol (decimal): &#538;</p>
<p>Symbol (direct): Ț</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase t comma below (Ț) is supported in all modern browsers as part of Latin Extended-B:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase t comma below (Ț) in language and content contexts:

Large glyphȚ
RomanianȚară (country)  |  Stație (station)  |  Timișoara
Lowercaseț (U+021B) — no named entity
Not the same asT (plain)  |  Ţ (cedilla)  |  Ť (caron)
Numeric refs&#x021A; &#538; \021A

🧠 How It Works

1

Hexadecimal Code

&#x021A; uses the Unicode hexadecimal value 021A to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Direct Character

Type Ț directly in HTML when your document uses UTF-8 encoding. There is no named entity for this Romanian letter.

HTML markup
4

CSS Entity

\021A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: Ț. Unicode U+021A sits in Latin Extended-B. Lowercase equivalent: U+021B (ț). Do not confuse with Ţ (t cedilla) or plain T (U+0054).

Use Cases

The uppercase t comma below (Ț) is commonly used in:

🇷🇴 Romanian

Essential for correct modern Romanian spelling at word starts (e.g. Țară, Stație). Use U+021A, not the legacy t-cedilla (U+0162).

🌐 Multilingual Sites

Support proper rendering of Romanian place names, personal names, and content on international websites.

📚 Language Learning

Teach correct Romanian spelling and distinguish comma below from cedilla and caron variants of t.

📄 Typography & Publishing

Ensure correct character display in digital publications, dictionaries, and government or legal documents in Romanian.

🔬 Linguistic & Academic

Used in Romanian language studies, orthography guides, and academic papers on Balkan and Romance linguistics.

♿ Accessibility

Using the correct character (U+021A) with proper lang attributes (e.g. lang="ro") ensures assistive technologies pronounce content correctly.

🎨 CSS Generated Content

Using \021A 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 numeric references (&#x021A; or &#538;) when escaping is required
  • Set lang="ro" on Romanian content for correct pronunciation hints
  • Use \021A in CSS content when generating the symbol via pseudo-elements
  • Distinguish Ț (comma below) from Ţ (cedilla) and plain T (U+0054)

Don’t

  • Substitute plain T when Ț is required in Romanian text
  • Use Ţ (cedilla) for modern Romanian—Romanian uses Ț (comma below, U+021A)
  • Confuse Ț (comma below) with Ť (caron) or plain T (U+0054)
  • Put CSS escape \021A in HTML text nodes
  • Use U+0021A or CSS \0021A—the correct code is U+021A and \021A

Key Takeaways

1

Type Ț directly, or use hex/decimal references

&#x021A; &#538;
2

For CSS stylesheets, use the escape in the content property

\021A
3

Unicode U+021A — LATIN CAPITAL LETTER T WITH COMMA BELOW

4

Essential for modern Romanian; lowercase is ț (U+021B)

❓ Frequently Asked Questions

Use &#x021A; (hex), &#538; (decimal), or \021A in CSS content. There is no named HTML entity for Ț. In UTF-8 you can also type Ț directly.
U+021A (LATIN CAPITAL LETTER T WITH COMMA BELOW). Latin Extended-B block. Hex 021A, decimal 538. Standard in modern Romanian orthography. Lowercase form is U+021B (ț).
When displaying modern Romanian text at word starts or in proper nouns, multilingual sites, language learning content, dictionaries, government documents, or when you need a reliable character reference for Romanian orthography. In UTF-8 pages you can type Ț directly.
No. There is no named HTML entity for the uppercase t comma below (Ț). Use numeric codes &#538; or &#x021A;, or the CSS entity \021A. In UTF-8 pages you can type Ț directly.
Ț (U+021A) is T with comma below, used in modern Romanian (e.g. Țară). Ţ (U+0162) is T with cedilla, used in historical Romanian spelling. They are different 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