Escape Sequences in Strings


Quotes are not the only characters that can be escaped inside a string. Here is a table of common escape sequences:

CodeOutput
\'single quote
\"double quote
\\backslash
\nnew line
\rcarriage return
\ttab
\bbackspace
\fform feed

Note that the backslash itself must be escaped in order to display as a backslash.

Instructions

Encode the following sequence, separated by spaces:
backslash tab tab carriage-return new-line and assign it to myStr