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