Hello I need to encode a string with 'Ñ'
I'm doing a connection with a provider sending this data Base64.encode64('Muñoz')
for example but when the provider decode this string he see this string "Mu\xC3\xB1os"
, How I can encode correctly the string?
Base64.encode64('Muñoz')
Base64.decode64(base64) == Muñoz