what can you use after the escape character "\"?

Where can I find a list of those characters that can be put in front of the ""character in a string literal, such as "n", thus the following would print a new line?

I don't know what those characters are called. I thought they were called "escape characters" or "format specifiers".

print("\n", terminator: "")

Looks like they're called "special characters" here: linkText.

I thought there would be more of them.

what can you use after the escape character "\"?
 
 
Q