How do you convert a String to UInt8 array?
var str = \"test\" var ar : [UInt8] ar = str
let str = "test" let byteArray = [UInt8](str.utf8)