Latin Capital Letter T With Stroke

Ŧ

Shortcodes

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

Unicode
U+0166
HTML Code
Ŧ
HEX Code
Ŧ
CSS Code
\0166
JS/JSON
\u0166
Unix/C/PHP/JAVA
0x166
URL-encode
%C5%A6

Customize Latin Capital Letter T With Stroke

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

Ŧ
  

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

Insert in HTML

1. Direct symbol:
<span>Ŧ</span>
HTML Code:
<span>&#358;</span>
HEX Code:
<span>&#x0166;</span>

Add with CSS

.latin-capital-letter-t-with-stroke::before {
  content: '\\0166';
}

Set it in JavaScript

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