Ad-hoc Binary Diff

Had a need for a binary diff, didn't have anything on the machine I was on and needed something quick and dirty:

od -cv file1 > file1.od
od -cv file2 > file2.od
diff -bu file1.od file2.od
    

Worked like a charm.