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
| Decimal | 127 |
| Hexadecimal | 0x7F |
| Octal | 0177 |
| Binary | 01111111 |
| HTML numeric entity |  |
| URL encoding | %7F |
| UTF-8 bytes | 0x7F |
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
 <!-- numeric entity (no named entity for this character) -->