cast text to byte go code example
Example 1: go string to byte array
b := []byte("ABC€")
s := string([]byte{65, 66, 67, 226, 130, 172})
Example 2: golang []byte to string
s := string([]byte{65, 66, 67, 226, 130, 172})
fmt.Println(s) // ABC€
b := []byte("ABC€")
s := string([]byte{65, 66, 67, 226, 130, 172})
s := string([]byte{65, 66, 67, 226, 130, 172})
fmt.Println(s) // ABC€