pergi string ke array byte

b := []byte("ABC€")
s := string([]byte{65, 66, 67, 226, 130, 172})
Zealous Zebra