golang convert slice of string to slice of byte code example
Example: go string to byte array
b := []byte("ABC€")
s := string([]byte{65, 66, 67, 226, 130, 172})
b := []byte("ABC€")
s := string([]byte{65, 66, 67, 226, 130, 172})