Consider this:
one dw "Прощай",0 ;"ПрÐ.Ñ.аÐ." = { d09fd180d0bed189d0b0d0b9 }
two dw "abcdef",0 ;"abcdef" = { 616263646566 }
three dw 'П','р','о','щ','а','й' ;'П', 'Ñ€','Ð.','Ñ.','а','Ð.' = {d09f, d180, d0be, d189, d0b0, d0b9}
four dw 'a','b','c','d','e','f' ;'a','b','c','d','e','f' = { 61,62,63,64,65,66 }
As you can see, text editor has to use 2 byte to represent each character in "Прощай"
UASM sees and counts each byte for the length
Any suggestion how to persuade UASM to speak Russian?