ASCII 84
Latin Capital Letter T (T)
Printable ASCII
Uppercase letter T.
All encodings at a glance
| Decimal | 84 |
| Hexadecimal | 0x54 |
| Octal | 0124 |
| Binary | 01010100 |
| HTML numeric entity | T |
| URL encoding | %54 |
| UTF-8 bytes | 0x54 |
Code snippets
JavaScript
String.fromCharCode(84); // "T"
84.toString(16); // "54"Python
chr(84) # 'T'
ord(chr(84)) # 84
hex(84) # '0x54'HTML
T <!-- numeric entity (no named entity for this character) -->