Takes one parameter, Source
Description:
This command will convert the characters in the Source parameter from a UTF16 character set to an UTF8 character set.
Example:
[New] Init, Utf8
Init = LoadFile$ "C:\Work\Temp\MemTab.Organization.cnd.Init"
Utf8 = Utf16ToUtf8$ "Utf8"
If Utf8 = Init
... (Init is Utf8 char. set)
Else
... (Init is not Utf8 char. set)
End If