keecode logokeecode
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")  # 127

C/C++

char c = 127;  // 'DEL'
int code = 'DEL';  // 127