int64 golang code example
Example 1: base64 encode golang
sEnc := base64.StdEncoding.EncodeToString([]byte(data))
fmt.Println(sEnc)
Example 2: golang convert string to int64
s := "97"
n, err := strconv.ParseInt(s, 10, 64)
if err == nil {
fmt.Printf("%d of type %T", n, n)
}