I'm looking for an OSX application that allows you to view the clipboard data in hex format. So if, for example, there's an image copied to the clipboard, then the app shows me the image data in hex form (i.e., "unformatted")
Is there an app out there for OSX that can do this? CLCL works, but unfortunately it's Windows only.
NSPasteBoard, get theNSDatafrom it and write that to a file. Open with a hex editor and you're done. – Daniel Beck♦ Feb 16 '11 at 21:59