put text in source file is ok
copy and paste into is ok
but if type text using IME method, only got strange characters like ![¤È¤±]
local ui = require "ui"
local win = ui.Window("test")
local label = ui.Entry(win, "测한",10, 20, 100)
local combobox = ui.Combobox(win, {"测한"}, 10, 40)
local edit = ui.Edit(win, "测한",10, 60,100,40)
win:show()
while win.visible do
ui.update()
end