0

While using Conversations API to a PoC, I've seen that sometimes, some Spanish characters are not well encoded:

"Atrévete a Soñar" instead of "Atrévete a Soñar"

I've been reading the Conversations API, but haven't found anything related to the encoding. Are all body messages encoded using "ISO-8859-1"?

How and where can I confirm this?

Carlos Daniel
  • 2,459
  • 25
  • 30
  • You face a [mojibake](https://en.wikipedia.org/wiki/Mojibake) case (*example in Python for its universal intelligibility*): `'Atrévete a Soñar'.encode('utf-8').decode('ISO-8859-1')` returns `Atrévete a Soñar` and vice versa: `"Atrévete a Soñar".encode('ISO-8859-1').decode('utf-8')` -> `Atrévete a Soñar`. Not much more to say without a [mcve]… – JosefZ Jan 17 '23 at 20:55

0 Answers0