QR Code cannot include the control characters
I am trying to use control characters (\t, \r, \n) as delimiters in the QR code. However, the PDF generation process converts them into spaces. How can I prevent this?
Issue: The QR code is not interpreting control characters correctly.
Input: "line1 \r line2 \r line3"
Expected Output: A QR code that decodes to three separate lines.
Actual Output: "line1 line2 line3" (The \r characters are lost).
