mirror of
https://gitee.com/johng/gf
synced 2026-07-05 13:22:16 +08:00
13 lines
147 B
Go
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))
|
|
}
|