QR code api special character question

Hello,

Im trying to create a qr code through API for a url link.
my link containts special characters which i place them encoded
for example i place “%2b” in the link instead of “+”.
my problem is that the QR code that is generated transorms “%2b” to character “+”
so when i scan the qr code im getting the “+” inside the url which causes me problem
Is there a way to not transform it and let it be “%2b”

Thank you

It sounds like you might have to double-encode the + to %252b. This is because the QR code generator interprets %2b as a URL-encoded plus sign and decodes it back to a literal +.