C++ Escape Sequences

Categoryprogramming
Tags
Created

List of C++ Escape Sequences for strings

NameSequenceMeaning
Alert\aMakes an alert, such as a beep
Backspace\bMoves the cursor back one space
Formfeed\fMoves the cursor to next logical page
Newline\nMoves cursor to next line
Carriage return\rMoves cursor to beginning of line
Horizontal tab\tPrints a horizontal tab
Vertical tab\vPrints a vertical tab
Single quote\\'Prints a single quote
Double quote\"Prints a double quote
Backslash\\Prints a backslash
Octal number\(number)Translates into char represented by octal
Hex number\x(number)Translates into char represented by hex number