Standard C language escape sequences
Escape Sequence                         Meaning
'\b'                         backspace
'\f'                         form feed
'\n'                         newline
'\r'                         carriage return
'\t'                         horizontal tab
'\v'                         vertical tab
'\\'                         backslash
'\''                         single quote
'\"'                         double quote
'\0dd'                         others (octal )
'\0xdd'                         others (hex)