Non-ASCII characters disappearing

Maybe there is a solution to this, but I can’t find it. I am new to Kantu, and have been trying to test form autofilling, but whenever I use non ASCII characters, they appear in the form, but disappear on clicking the submit button. Manual entry has no problems. In straight Selenium IDE I have no issues. If I group the string in quotes like ‘’, it remains, but with the unwanted ’ '.

Hi, can you post a test macro, please?

{
“Name”: “testCyrillic”,
“CreationDate”: “2019-5-3”,
“Commands”: [
{
“Command”: “open”,
“Target”: “https://mediaoasis.org/links/dashboards/translators/categories”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “xpath=//*[@id="content"]/button/span”,
“Value”: “”
},
{
“Command”: “type”,
“Target”: “name=enTranslation”,
“Value”: “‘region’”
},
{
“Command”: “type”,
“Target”: “name=kkTranslation”,
“Value”: “регион”
},
{
“Command”: “type”,
“Target”: “name=ruTranslation”,
“Value”: “регион”
},
{
“Command”: “click”,
“Target”: “xpath=/html/body/div[4]/div/div[1]/div/div/div[2]/form/div[5]/button[1]”,
“Value”: “”
}
]
}