t

ASCII Character: Lowercase t

ASCII Code 116 · Unicode U+0074 · Hex 0x74

t lowercase-t

About the Lowercase t Character

ASCII code 116 (0x74) represents the Lowercase t character "t". The lowercase letter "t" has ASCII code 116. Lowercase letters a–z span codes 97–122. Subtracting 32 from a lowercase letter’s ASCII code gives the corresponding uppercase letter (e.g., 'a' at 97 - 32 = 'A' at 65). 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 116
Hexadecimal 0x74
Octal 164
Binary 01110100
Unicode U+0074
Unicode Name LATIN SMALL LETTER T
HTML Numeric t
HTML Entity
URL Escape %74
UTF-8 (Hex) 74
Quoted-Printable t

Source Code Examples

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

Navigate

Copied!