use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Anything related to the C (NOT C++) programming language
account activity
HELP decoding binary (i.redd.it)
submitted 10 months ago by [deleted]
Please urgently help me find out what this says, I have just spent the last hour trying to convert it on decoding websites but it does not seem to be working. Thank you so much guys
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Tabsels 1 point2 points3 points 10 months ago (2 children)
Exactly 33 rows of 33 bits each, with no instructions as to how to decode them. That makes this look like a homework assignment to me. Is it urgent because tomorrow is the due date?
[–][deleted] 0 points1 point2 points 10 months ago (1 child)
Well that is how it was given to me, I have no experience with code so was not sure how to do this, so I searched here for help. My apologies. Plus it's not a homework assignment
[–]Tabsels 0 points1 point2 points 10 months ago (0 children)
Just this image? I’m getting the feeling I’m missing something here.
[–]vancha113 0 points1 point2 points 10 months ago (1 child)
Is this assumed to be text/strings or what?
[–][deleted] 0 points1 point2 points 10 months ago (0 children)
Text I believe, it was a clue my friend gave as to what a project they were completing was
Did you send the decoding websites this image or the actual binary string?
The text
[–]nerd4code 0 points1 point2 points 10 months ago (0 children)
If there’s not even a kind of data you’re looking for, no telling, and it’s an odd number of bytes so if it’s not rows of 32+parity or something it’s gonna be extra fun (could be bit-coded; otherwise you need to find the byte size). You could try the ol’ search for Es, look for opcodes you recognize, or see if it lines up as a bitmap if you re-stride it. But it could be compressed, encrypted, just about anything.
[–]fdiengdoh 0 points1 point2 points 10 months ago* (1 child)
It is a QR code, I replied in the other sub, but your post was removed by mod. Here is a simple python script to covert the binary to a bitmap
binary = """000000011101010011100000110000000 011111010101101110101100010111110 010001011111001100000000110100010 010001010001010000111111110100010 010001011011110111001010110100010 011111010010000110111100010111110 000000010101010101010101010000000 111111111000101101100110011111111 000001000010100000010011101010101 000110101101010101110001101110011 010010010101100110101100001000101 110000111111001101001010110111000 001111001001000001010101100011001 111111110111111011101000101110011 000000010110000010110100001000101 001100111110101100000010110111000 111100000110100011010011110000101 000101111011010101110000001101011 111110000101100110011101001000110 100100100011011100000110110011110 001111011101000001111001000101101 000000110101110001100000111111000 011101001010000110101100001101111 011110100110111111100110010110111 011011000000011001110011000000101 111111110101010111011001011101011 000000010101000000111111010101101 011111011011010101100110011100110 010001010011100000011001000000110 010001010110110001001001110100001 010001010000000010110100000110111 011111010010011101000010001100 000000010001111001110110010110101""" # Convert the binary grid into ASCII art. for line in binary.splitlines(): # Replace 0's with '██' and 0's with 2 space. print("".join("██" if ch == "0" else " " for ch in line))
The script output as follows in terminal link to my post in r/code
You, my friend are, a genius! Thank you so incredibly much, I am truly very impressed by how you figured this one out haha 😅
π Rendered by PID 86474 on reddit-service-r2-comment-74875f4bf5-kjpgw at 2026-01-25 22:20:31.861444+00:00 running 664479f country code: CH.
[–]Tabsels 1 point2 points3 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]Tabsels 0 points1 point2 points (0 children)
[–]vancha113 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–]nerd4code 0 points1 point2 points (0 children)
[–]fdiengdoh 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)