DEL
Delete
Decimal: 127
Hex: 7F
Control
ASCII Values
Decimal
127
Hexadecimal
0x7F
Character
DEL
Usage Examples
JavaScript (from decimal)
String.fromCharCode(127); // "DEL"
JavaScript (to decimal)
"DEL".charCodeAt(0); // 127
Python
chr(127) # "DEL"
ord("DEL") # 127C/C++
char c = 127; // 'DEL' int code = 'DEL'; // 127
Control Characters
Control characters (0-31, 127) are non-printable characters used for text formatting and device control. Common examples include newline (10), carriage return (13), and tab (9).