DevKits

ASCII 8

Backspace (BS)

Control character

Moves cursor back one column. Sent by the Backspace key on many terminals.

All encodings at a glance

Decimal8
Hexadecimal0x08
Octal0010
Binary00001000
HTML numeric entity
URL encoding%08
UTF-8 bytes0x08

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

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

Nearby codes