StackOverflow 文件 Go 教程 Base64 編碼 編碼 編碼 Created: November-22, 2018 const foobar = `foo bar` encoding := base64.StdEncoding encodedFooBar := make([]byte, encoding.EncodedLen(len(foobar))) encoding.Encode(encodedFooBar, []byte(foobar)) fmt.Printf("%s", encodedFooBar) // Output: Zm9vIGJhcg== 操場 編碼為字串Base64 編碼