If I have a string, i.e.:
s = "\'Quote Example\'\tby person\n"
How can I display it to view the special characters untranslated, to see:
"\'Quote Example\'\tby person\n"
instead of:
'Quote Example' by person
I need to know mostly for debugging purposes since the string is generated and doesn't follow a set format.