Latin Subscript Small Letter T

Shortcodes

Copy useful codes for latin subscript small letter t symbol ₜ to use in websites, apps, blogs, and docs.

Unicode
U+209C
HTML Code
ₜ
HEX Code
ₜ
CSS Code
\209C
JS/JSON
\u209C
Unix/C/PHP/JAVA
0x209C
URL-encode
%E2%82%9C

Customize Latin Subscript Small Letter T

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₜ</span>
HTML Code:
<span>&#8348;</span>
HEX Code:
<span>&#x209C;</span>

Add with CSS

.latin-subscript-small-letter-t::before {
  content: '\\209C';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-t').textContent = 'ₜ';
copied