HTML Entity for Uppercase T Comma Below (Ț)

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
U+021ALatin Extended-B
ȚHexadecimal reference
ȚDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\021A";
}
</style>
</head>
<body>
<p>Symbol (hex): Ț</p>
<p>Symbol (decimal): Ț</p>
<p>Symbol (direct): Ț</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase t comma below (Ț) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase t comma below (Ț) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ț uses the Unicode hexadecimal value 021A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ț uses the decimal Unicode value 538 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type Ț directly in HTML when your document uses UTF-8 encoding. There is no named entity for this Romanian letter.
CSS Entity
\021A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Essential for correct modern Romanian spelling at word starts (e.g. Țară, Stație). Use U+021A, not the legacy t-cedilla (U+0162).
Support proper rendering of Romanian place names, personal names, and content on international websites.
Teach correct Romanian spelling and distinguish comma below from cedilla and caron variants of t.
Ensure correct character display in digital publications, dictionaries, and government or legal documents in Romanian.
Used in Romanian language studies, orthography guides, and academic papers on Balkan and Romance linguistics.
Using the correct character (U+021A) with proper lang attributes (e.g. lang="ro") ensures assistive technologies pronounce content correctly.
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 (
ȚorȚ) when escaping is required - Set
lang="ro"on Romanian content for correct pronunciation hints - Use
\021Ain CSScontentwhen generating the symbol via pseudo-elements - Distinguish Ț (comma below) from Ţ (cedilla) and plain T (U+0054)
Key Takeaways
Type Ț directly, or use hex/decimal references
Ț ȚFor CSS stylesheets, use the escape in the content property
\021AUnicode U+021A — LATIN CAPITAL LETTER T WITH COMMA BELOW
Essential for modern Romanian; lowercase is ț (U+021B)
Previous: Uppercase T Cedilla (Ţ) Next: Uppercase T Diagonal Stroke
❓ Frequently Asked Questions
Ț (hex), Ț (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 (ț).Ț or Ț, or the CSS entity \021A. In UTF-8 pages you can type Ț directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
