You need to escape the backslash inside the string, I think. "\1" is interpreted as a string consisting of one character, the ASCII character with hex code 0x01, which happens to be C-a. "\\1" is a 2-character string: backslash, then one.
-- Aaron Ecay