Special character that is preceded with a backslash ()
Escape character
Newline escape character that causes output to advance to the next line
\n
What will print to the console?
print(‘One\nTwo\nThree’)
One
Two
Three
Causes output to skip over to the next horizontal tab position
\t
Causes a single quote mark to be printed
\’
Causes a double quote mark to be printed
\”
Causes a backslash character to be printed
\