Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <Multi_key> <exclam> <question> : "‽" U203D # INTERROBANG
  2.  
  3. $ perl -Mcharnames=:full -CS -nle 'print charnames::viacode(ord)' <<<"‽"
  4. INTERROBANG
  5. $ perl -Mcharnames=:full -CS -nle 'print charnames::viacode(ord)' <<<"🐄"
  6. COW
  7.  
  8. sudo perl -MCPAN -e 'install Unicode::Tussle'
  9.  
  10. $ uniprops 🐄
  11. U+1F404 ‹🐄› N{COW}
  12. pS p{So}
  13. All Any Assigned InMiscPictographs Common Zyyy So S Gr_Base Grapheme_Base Graph
  14. GrBase Misc_Pictographs Miscellaneous_Symbols_And_Pictographs Other_Symbol
  15. Print Symbol Unicode X_POSIX_Graph X_POSIX_Print
  16.  
  17. #!/bin/bash
  18. cat /usr/share/X11/locale/en_US.UTF-8/Compose | awk -F ":" '{print $2}' | grep $1 | awk -F "#" '{print $2}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement