How Can I Fix Garbled Chinese Characters Returned by an API?
When Chinese characters appear as garbled text in the API response, it is usually due to a mismatch in character encoding formats.
The results returned by DLI APIs are encoded in UTF-8. You need to convert the encoding format of the returned information to UTF-8.
print(response.content.decode("utf-8"))
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.