Latin Letter Small Capital T

Shortcodes

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

Unicode
U+1D1B
HTML Code
ᴛ
HEX Code
ᴛ
CSS Code
\1D1B
JS/JSON
\u1D1B
Unix/C/PHP/JAVA
0x1D1B
URL-encode
%E1%B4%9B

Customize Latin Letter Small Capital T

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴛ</span>
HTML Code:
<span>&#7451;</span>
HEX Code:
<span>&#x1D1B;</span>

Add with CSS

.latin-letter-small-capital-t::before {
  content: '\\1D1B';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-t').textContent = 'ᴛ';
copied