Fullwidth Latin Capital Letter T

Shortcodes

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

Unicode
U+FF34
HTML Code
T
HEX Code
T
CSS Code
\FF34
JS/JSON
\uFF34
Unix/C/PHP/JAVA
0xFF34
URL-encode
%EF%BC%B4

Customize Fullwidth Latin Capital Letter T

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

  

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

Insert in HTML

1. Direct symbol:
<span>T</span>
HTML Code:
<span>&#65332;</span>
HEX Code:
<span>&#xFF34;</span>

Add with CSS

.fullwidth-latin-capital-letter-t::before {
  content: '\\FF34';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-capital-letter-t').textContent = 'T';
copied