mirror of
https://github.com/vxcontrol/lualibs-winapi.git
synced 2026-07-01 13:54:03 -04:00
11 lines
159 B
Lua
11 lines
159 B
Lua
require 'winapi'
|
|
local U = winapi.utf8_expand
|
|
local UTF8 = winapi.CP_UTF8
|
|
|
|
winapi.set_encoding(UTF8)
|
|
|
|
txt = U '#03BB + #03BC + C'
|
|
print(txt)
|
|
|
|
print(U '#03BD')
|