func encoding/hex.Encode

12 uses

	encoding/hex (current package)
		hex.go#L45: func Encode(dst, src []byte) int {
		hex.go#L60: 	Encode(dst[len(dst):][:n], src)
		hex.go#L128: 	Encode(dst, src)
		hex.go#L185: 		encoded := Encode(e.out[:], p[:chunkSize])
		hex.go#L278: 			Encode(h.buf[4:], h.buf[:4])
		hex.go#L286: 		Encode(h.buf[:], data[i:i+1])

	github.com/jackc/pgx/v5/internal/sanitize
		sanitize.go#L196: 	hex.Encode(dst[origLen+3:len(dst)-1], buf)

	github.com/jackc/pgx/v5/pgtype
		uuid.go#L59: 	hex.Encode(buf[0:8], src[:4])
		uuid.go#L61: 	hex.Encode(buf[9:13], src[4:6])
		uuid.go#L63: 	hex.Encode(buf[14:18], src[6:8])
		uuid.go#L65: 	hex.Encode(buf[19:23], src[8:10])
		uuid.go#L67: 	hex.Encode(buf[24:], src[10:])