Files
gf/.example/other/test.go
2020-04-23 17:14:11 +08:00

13 lines
147 B
Go

package main
import (
"encoding/hex"
"fmt"
)
func main() {
b := []byte{3, 0, 0}
fmt.Println(string(b))
fmt.Println(hex.EncodeToString(b))
}