DevKits

ASCII 127

Delete (DEL)

Control character

Delete. Historically deleted the character under the cursor on paper terminals. Modern Delete/Backspace are usually mapped elsewhere.

All encodings at a glance

Decimal127
Hexadecimal0x7F
Octal0177
Binary01111111
HTML numeric entity
URL encoding%7F
UTF-8 bytes0x7F

Code snippets

JavaScript

String.fromCharCode(127); // "DEL"
127.toString(16); // "7f"

Python

chr(127)           # control char DEL
ord(chr(127))      # 127
hex(127)           # '0x7f'

HTML

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

Nearby codes