I am trying to sanitize a QR code output. The value I am trying to send via Retrofit is
010868193700666621762185642311216939172106131020190603
but OKHttp log show
example.com/endpoint/etc/&Qrcode=%1D010868193700666621762185642311216939%1D172106131020190603
When I use this .trim().replace("\u00D", "")
example.com/endpoint/etc/&Qrcode=010868193700666621762185642311216939%1D172106131020190603
How do I remove those unwanted characters?