DevKits

ASCII 84

Latin Capital Letter T (T)

Printable ASCII

Uppercase letter T.

All encodings at a glance

Decimal84
Hexadecimal0x54
Octal0124
Binary01010100
HTML numeric entityT
URL encoding%54
UTF-8 bytes0x54

Code snippets

JavaScript

String.fromCharCode(84); // "T"
84.toString(16); // "54"

Python

chr(84)           # 'T'
ord(chr(84))      # 84
hex(84)           # '0x54'

HTML

&#84;   <!-- numeric entity (no named entity for this character) -->

Nearby codes