HIBCCYNIYZZCEWERJHPMDU2W7EU35TCHN66MT4C35CYZOV6UGQUAC
EYPCPIP762LUUJ6TLBXU4ZFERH3DEXPYJP65DNCSQTIGFHGW35ZQC
"strconv"
fmt.Fprintf(b, " content: %q {shape: code}\n", hexdump.Dump(block.Content, 0, 4))
fmt.Fprintf(b, " content: %s {shape: code}\n", quoteString(hexdump.Dump(block.Content, 0, 4)))
fmt.Fprintf(b, " content: %q {shape: code}\n", block.Content)
fmt.Fprintf(b, " content: %s {shape: code}\n", quoteString(string(block.Content)))
func quoteString(s string) string { return strings.Replace(strconv.Quote(s), "$", `\x24`, -1)}
func quoteString(s string) string {
return strings.Replace(strconv.Quote(s), "$", `\x24`, -1)
}