Converts an ANSI string to a Unicode string.
ChrStringToUnicode( string )
(s) string: specifies a string.
(s) Unicode-string: a Unicode string.
; Step through this code in WinBatch Studio to see the variable str ; change type from String to String_Unicode str = "Hello" str = ChrStringToUnicode(str)