Translate Decode Binary

an98f

New Member
Hi. I can't decode the following. Maybe you can help? I tried all the online decoders:
 
Last edited:

OS Dragon

New Member
Dude, all that binary is a load of bollocks.
00110000001100000011000100110001001100000011000000110000001100000011000000110000001100010011000100110000001100 010011000100110000001100000011000000110001001100010011000000 110001001100000011000100110000001100000011000100110001001100 000011000000110000001100000011000000110000001100010011000100 1100000011 converts to:

0011000000110110001101010011000000110

If you want to be able to convert binary into text, go to this site, simple: Here!
 

The_Other_One

VIP Member
Hehe, I could do it to HEX or DEC(or I used to be able to...I know my 89 can ;P) But man, that is too much. *checks what OS Dragon's thing says*
 

an98f

New Member
ok, here's the whole thing: 001100000011000000110001001100010011000000110000001100000011 000000110000001100000011000100110001001100000011000100110001 001100000011000000110000001100010011000100110000001100010011 000000110001001100000011000000110001001100010011000000110000 001100000011000000110000001100000011000100110001001100000011 000100110001001100000011000000110000001100010011000100110000 001100010011000000110000001100000011000000110001001100010011 000000110000001100000011000000110000001100000011000100110001 001100000011000100110001001100000011000000110000001100010011 000100110000001100010011000100110000001100000011000000110001 001100010011000000110000001100000011000000110000001100000011 000100110001001100000011000100110001001100010011000000110000 001100010011000100110000001100000011000000110000001100000011 000000110001001100010011000000110000001100000011000000110000 001100000011000100110001001100000011000100110001001100000011 000000110000001100010011000100110000001100010011000100110000 0011000000110000001100010011000100110000


BUT I DIDN"T WRITE IT
 

Christopher

VIP Member
Decoding the binary to ASCII gives a string of ASCII 1's and 0's, which I assume should be more binary.
Code:
00110000001101100011010100110000001101100011010000110000001101100011011000110000001101110011000000110000001101100011011000110
Decoding that gives a number,
Code:
065064066070066
What is that? Octal perhaps? But that gives another one,
Code:
54686
. Which can't be octal, perhaps hex? Decoding it as hex gives
Code:
Th
.

Don't think that's the message :p What language is this in? Is it English?
 
Top