In single quotes, Perl does NOT interpret escape sequences except for \ and \'. The string 'a\b\n' contains a literal backslash-backslash, 'b', and literal backslash-n. When printed, this outputs exactly: a\b\n (no newline character, just the characters). The double backslash becomes one backslash in output.