Latin Capital Letter T With Cedilla

Ţ

Shortcodes

Copy useful codes for latin capital letter t with cedilla symbol Ţ to use in websites, apps, blogs, and docs.

Unicode
U+0162
HTML Code
Ţ
HEX Code
Ţ
CSS Code
\0162
JS/JSON
\u0162
Unix/C/PHP/JAVA
0x162
URL-encode
%C5%A2

Customize Latin Capital Letter T With Cedilla

Customize Ţ, download it as SVG or PNG, or copy the generated HTML snippet.

Ţ
  

How to use Latin Capital Letter T With Cedilla Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ţ</span>
HTML Code:
<span>&#354;</span>
HEX Code:
<span>&#x0162;</span>

Add with CSS

.latin-capital-letter-t-with-cedilla::before {
  content: '\\0162';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-t-with-cedilla').textContent = 'Ţ';
copied