Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
base64函数主要是用来将字符串或 bytes 进行 base64 编码
base64
func base64(v1 string/bytes) string
asdf
base64("asdf")
YXNkZg==
b"\xac\xed\x00\x05"
base64(b"\xac\xed\x00\x05")
rO0ABQ==
Was this page helpful?