ASCII 8
Backspace (BS)
Control character
Moves cursor back one column. Sent by the Backspace key on many terminals.
All encodings at a glance
| Decimal | 8 |
| Hexadecimal | 0x08 |
| Octal | 0010 |
| Binary | 00001000 |
| HTML numeric entity |  |
| URL encoding | %08 |
| UTF-8 bytes | 0x08 |
Code snippets
JavaScript
String.fromCharCode(8); // "BS"
8.toString(16); // "08"Python
chr(8) # control char BS
ord(chr(8)) # 8
hex(8) # '0x08'HTML
 <!-- numeric entity (no named entity for this character) -->