Help me decode this (BINARY?)!

Soldato
Joined
18 Jan 2007
Posts
19,845
Location
Land of the Scots
OK, so over ten years ago I made a personal website when I was at college, it's still online and I found something funny in the HTML source code...

It was some binary encoded as "i" and "!" instead of 1's and 0's respectivley like so...

[i!!i] [i!iii i!!i ii!! ii!!] [!!!i ii!! i!iii !!!i ii!!i i!!ii] there was more but I edited it out to protect the innocent.

I substituted the numbers and each set of 4 binary block related to a letter of the alphabet, like A=1, B=2 and so on, so the message above reads:

"I will always".

HOWEVER, I came across another code but I cannot for the life of me figure it out!

!ii! !!!i!i!i !!i!!i!! i!!! !!!i!i!i !!i!!!!i !!!i!i!! !i!!

So most likely:

0110 00010101 00100100 1000 00010101 00100001 00010100 0100

But IDK!!

I guess it may not even be binary but after ten years the old noggin is failing me...
 
Soldato
Joined
22 Sep 2008
Posts
4,300
Location
Kent, England
So most likely:

0110 00010101 00100100 1000 00010101 00100001 00010100 0100

But IDK!!

I guess it may not even be binary but after ten years the old noggin is failing me...

That is missing 4 bits, binary code must be divisible by 8 if you wish to convert it to text.

If I add '0000' onto the end, a translator gives me: aRH!@

Which makes no sense whatsoever :(
 

Pho

Pho

Soldato
Joined
18 Oct 2002
Posts
9,324
Location
Derbyshire
Using the same way you did the first one, I get:

using i=1, !=0:
[!ii!] [!!!i!i!i] [!!i!!i!!] [i!!!] [!!!i!i!i] [!!i!!!!i] [!!!i!i!!] [!i!!] = F U d H U a T D
[!ii!] [!!!i !i!i] [!!i! !i!!] [i!!!] [!!!i !i!i] [!!i! !!!i] [!!!i !i!!] [!i!!] = F AE BD H AE BA AD D

using i=0, !=1:
[!ii!] [!!!i !i!i] [!!i! !i!!] [i!!!] [!!!i !i!i] [!!i! !!!i] [!!!i !i!!] [!i!!] = I NJ MK G NJ MN NK K


No good I guess? :p
 
Soldato
Joined
16 Aug 2009
Posts
8,577
Location
Luton, England
OK, so over ten years ago I made a personal website when I was at college, it's still online and I found something funny in the HTML source code...

It was some binary encoded as "i" and "!" instead of 1's and 0's respectivley like so...

[i!!i] [i!iii i!!i ii!! ii!!] [!!!i ii!! i!iii !!!i ii!!i i!!ii] there was more but I edited it out to protect the innocent.

I substituted the numbers and each set of 4 binary block related to a letter of the alphabet, like A=1, B=2 and so on, so the message above reads:

"I will always".

HOWEVER, I came across another code but I cannot for the life of me figure it out!

!ii! !!!i!i!i !!i!!i!! i!!! !!!i!i!i !!i!!!!i !!!i!i!! !i!!

So most likely:

0110 00010101 00100100 1000 00010101 00100001 00010100 0100

But IDK!!

I guess it may not even be binary but after ten years the old noggin is failing me...

Decoded: The game
 
Soldato
Joined
22 Aug 2005
Posts
8,840
Location
Clydebank
[!ii!] [!!!i !i!i] [!!i! !i!!] [i!!!] [!!!i !i!i] [!!i! !!!i] [!!!i !i!!] [!i!!] = F AE BD H AE BA AD D

Hint: it's not 1 5 (A E ) but 15 (O) as per the square brackets around the original letter groupings.

pad each set of numbers ith 4 zeros to make conversion easy :

binary.jpg


But wht is/who is foxhound. ? The forum must be told.
 
Soldato
Joined
8 Mar 2006
Posts
13,300
Location
Near Winchester
Why is that in your source?

A lollypop to the 1st person to decode this English sentence:
Code:
00011101010010000001111000011010010011000000010101010011010000010000010000011000000101100101100100000000001111010101010100010001000011110100110000000101010100110100000100011110000100100000000000010101000111110011000000000000000100100000011100001111000111100101100100010001000110000001001000000101010101110101110101100111


Edit:
The key is in this thread.
 
Soldato
OP
Joined
18 Jan 2007
Posts
19,845
Location
Land of the Scots
Hint: it's not 1 5 (A E ) but 15 (O) as per the square brackets around the original letter groupings.

pad each set of numbers ith 4 zeros to make conversion easy :

binary.jpg


But wht is/who is foxhound. ? The forum must be told.
Surprising that I encoded it like that originally, even more surprising I didn't think to do it that way now.

Foxhound referred to a girl I crashed and burned with in college, her surname being fox and all...
 
Back
Top Bottom