Advertisement
metalx1000

Unicode examples

Dec 11th, 2017
916
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.28 KB | None | 0 0
  1. #install gucharmap - This will show you characters and allow you to copy them
  2. #or you can just Google them
  3. sudo apt install gucharmap
  4.  
  5. echo "☠☯♞❤"
  6. echo "♚♛♜♝♞♟"
  7. or
  8. echo -e "\u265a\u265b\u265c\u265d\u265e\u265f"
  9. or
  10. for u in {a..f};do echo -ne "\u265$u";done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement