Guest User

Untitled

a guest
Nov 15th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # non nomalized
  2. $ echo "$(echo '%E3%83%8D%E3%82%B9%E3%82%99%E3%83%9F%' | tr -d '%' | tr 'A-Z' 'a-z' | fold -2 | xargs -I{} echo \\0x{} | tr -d '\n')"
  3.  
  4. # normalized
  5. $ echo "$(echo '%E3%83%8D%E3%82%BA%E3%83%9F' | tr -d '%' | tr 'A-Z' 'a-z' | fold -2 | xargs -I{} echo \\0x{} | tr -d '\n')"
Add Comment
Please, Sign In to add comment