T

ASCII Character: Uppercase T

ASCII Code 84 · Unicode U+0054 · Hex 0x54

T uppercase-t

About the Uppercase T Character

ASCII code 84 (0x54) represents the Uppercase T character "T". The uppercase letter "T" has ASCII code 84. Uppercase letters A–Z span codes 65–90. The relationship between uppercase and lowercase ASCII letters is consistent: adding 32 to an uppercase letter’s code gives the corresponding lowercase letter (e.g., 'A' at 65 + 32 = 'a' at 97). The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 84
Hexadecimal 0x54
Octal 124
Binary 01010100
Unicode U+0054
Unicode Name LATIN CAPITAL LETTER T
HTML Numeric T
HTML Entity
URL Escape %54
UTF-8 (Hex) 54
Quoted-Printable T

Source Code Examples

JavaScript
// Character literal
let char = 'T';
// Using char code
let char2 = String.fromCharCode(84);
// Unicode escape
let char3 = '\x54';
Python
# Character literal
char = 'T'
# Using chr()
char = chr(84)
# Using ord() to get code
code = ord('T')  # Returns 84
HTML
<!-- Direct character -->
T
<!-- HTML entity (numeric) -->
&#84;
<!-- Hex entity -->
&#x54;
C#
// Character literal
char c = 'T';
// Using cast
char c2 = (char)84;
// To get code from char
int code = (int)'T';  // Returns 84

Navigate

Copied!