Latin Small Letter T With Cedilla

ţ

Shortcodes

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

Unicode
U+0163
HTML Code
ţ
HEX Code
ţ
CSS Code
\0163
JS/JSON
\u0163
Unix/C/PHP/JAVA
0x163
URL-encode
%C5%A3

Customize Latin Small Letter T With Cedilla

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

ţ
  

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

Insert in HTML

1. Direct symbol:
<span>ţ</span>
HTML Code:
<span>&#355;</span>
HEX Code:
<span>&#x0163;</span>

Add with CSS

.latin-small-letter-t-with-cedilla::before {
  content: '\\0163';
}

Set it in JavaScript

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