Skip to content

Instantly share code, notes, and snippets.

@karlp
Created July 16, 2010 17:44
Show Gist options
  • Save karlp/478668 to your computer and use it in GitHub Desktop.
Save karlp/478668 to your computer and use it in GitHub Desktop.
String binarySolo = "01001001 01100110 00100000 01111001 01101111 01110101 00100000 01100011 01100001 01101110 00100000 01110010 01100101 01100001 01100100 00100000 01110100 01101000 01101001 01110011 00101100 00100000 01111001 01101111 01110101 00100000 01100001 01110010 01100101 00100000 01110101 01101110 01100101 01101101 01110000 01101100 01101111 01111001 01100101 01100100";
for (String seg : binarySolo.split(" ")) {
System.out.print((char)Integer.parseInt(seg, 2));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment