Private Sub Command1_Click()

Dim qwe() As Byte, asd As String

asd = "asd"

qwe = StrConv(asd, vbFromUnicode)

End Sub

so I got qwe(0) = 97
qwe(1) = 115
qwe(2) = 100

how can i do to have my string "asd" back from qwe() without looping

is there a function like strConv doing it or an API call ?