I am sending text message having Japanese characters.
Here is my message
In japanese
このOTPを使用してQuikドライブにログインします。 このOTPを誰とも共有しないでください
In English
use this OTP to login to Quik Drive. Please don't share this OTP to anyone
Here what I am getting
Here what I am getting on my mobile phone
Here is my nodejs code
class ClickatellService {
constructor() {
this.sendSms('+mobileNumber', 'このOTPを使用してQuikドライブにログインします。 このOTPを誰とも共有しないでください')
}
sendSms(to, message) {
return new Promise((resolve, reject) => {
request.get(
`https://api.clickatell.com/http/sendmsg?user=XXX&password=XXX&api_id=XXX&to=${to}&text=${encodeURI(
message
)}`,
(error, response, body) => {
if (error) {
return resolve(error)
} else {
return resolve(response)
}
}
)
})
}
}
What I can do to be getting the message in simple japanese language.
Any help would be appreciated!!!
You probably need to set the charset to UTF-8 before sending. I don't know what the actual charset your'e using in your code but make sure its UTF-8.
If you already using UTF-8, make sure the actual Font you using is able to handle the Japanese letters.
For more explanation on how to handle Japanese letters, maybe you should check this:
https://www.kanjidatabase.com/japanese_developer_tips.php