| Nome del simbolo | Latin Capital Letter T |
| Versione Unicode | 1.1 |
| Unicode | U+0054 |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \0054 |
| Codice esadecimale | 0x0054 |
| Codice HTML | T |
| LaTeX | T |
| Simbolo | T |
| Codifica URL (percentuale UTF-8) | %54 |
| Nome parlato / screen reader | Latin Capital Letter T |
| UTF-8 | 54 |
| UTF-16 | 0054 |
| UTF-32 | 00000054 |
1\documentclass{article}2\usepackage{pifont}3T4\end{document}Puoi digitare il simbolo latin capital letter t sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 84 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin capital letter t", or use Unicode Hex Input with 0054.
Ctrl + Shift + U, type 0054, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.capital-t::before { content: "\0054"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>T</span>La rappresentazione del simbolo Latin Capital Letter T nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u0054' or String.fromCodePoint(84) |
| Python | '\N{LATIN CAPITAL LETTER T}' or chr(84) |
| Rust | '\u{0054}' |
| C / C++ | UTF-8 source or wchar_t with U+0054 |
| Go | string(rune(0x0054)) |
| Ruby | "\u{0054}" |