Advertisement
Guest User

Untitled

a guest
Jun 1st, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4. "encoding/hex"
  5. "fmt"
  6. )
  7.  
  8. func main() {
  9.  
  10. s := "hello\nworld"
  11. fmt.Printf("%s\n", hex.EncodeToString([]byte(s)))
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement