Modifier Letter Capital T

Shortcodes

Copy useful codes for modifier letter capital t symbol ᵀ to use in websites, apps, blogs, and docs.

Unicode
U+1D40
HTML Code
ᵀ
HEX Code
ᵀ
CSS Code
\1D40
JS/JSON
\u1D40
Unix/C/PHP/JAVA
0x1D40
URL-encode
%E1%B5%80

Customize Modifier Letter Capital T

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵀ</span>
HTML Code:
<span>&#7488;</span>
HEX Code:
<span>&#x1D40;</span>

Add with CSS

.modifier-letter-capital-t::before {
  content: '\\1D40';
}

Set it in JavaScript

document.querySelector('.modifier-letter-capital-t').textContent = 'ᵀ';
copied