Private Sub Command1_Click()
mystring = "hello world"
mystring = StrConv(mystring, vbUnicode)
debug.print mystring
Open "c:\tempunicode.txt" For Output As #1
Print #1, mystring
Close #1
'check the file you will see it is in unicode format
mystring = ""
Open "c:\tempunicode.txt" For Input As #1
Input #1, mystring
Close #1
debug.print mystring
End Sub