Ascii Value For Backspace [portable] Jun 2026
Need other ASCII values? Just ask!
In many programming languages (C, C++, Python, etc.), Backspace is represented as: ascii value for backspace
In many programming languages and terminal environments, it is represented by the escape sequence or the caret notation ^H . It is a control character used to move the cursor back one position, typically erasing the character at that position. Need other ASCII values
In the decimal (base 10) system, it is represented by the number . In hexadecimal (base 16), it is represented as 0x08 . ascii value for backspace
# Print "Hello" then backspace then "Hi" print("Hello\b Hi") # Might output "Hell Hi" depending on terminal