Is there a way to prevent JavaScript from executing the newline character (\n) within a string?
I'm dealing with a string that contains a newline character (\n), like this: "ksqOOEe+sqQwexx12lMf31V\nLqW23ds
". This is an encrypted string that needs to be handled in JavaScript. The problem is that JavaScript breaks it into two lines, causing the browser to register an illegal operation. I can't just escape it with other special characters because it's part of the encryption process and will need to be decrypted for data reconstruction in later steps.