Page 1 of 1
A Few Percent
Posted: Sat Sep 05, 2009 3:34 am
by slyFox
I solved this puzzle but something is still nagging me. What do the %'s mean.
i.e %66%78 etc.
Are they just a delimiter or something else.? Google isn't being helpful and its driving me crazy. A hint of where to look maybe? or was this just made up for the site?
Re: A Few Percent
Posted: Sat Sep 05, 2009 7:19 am
by michuber
Posted: Sun Sep 06, 2009 1:43 am
by slyFox
thx
Posted: Sat Mar 12, 2011 10:31 am
by bodjo
i think its a crypto more then a web chalenge
Posted: Sun Apr 10, 2011 3:44 pm
by erry
i went on google and replaced in the URL the text given. so it displayed the answer
Posted: Wed May 25, 2011 4:09 pm
by aringorang
Posted: Wed Jan 04, 2012 3:33 pm
by wynk
My tiny ruby solution:
Code: Select all
input = "%66%75%67%6C%79"
extension = input.scan(/[0-9A-Z]{2,2}/)
extension.map! { |x| x.hex.chr }
output = extension.join
puts output
Posted: Tue Mar 06, 2012 1:26 pm
by X.25
<script language="javascript">
document.write( unescape( '%66%75%67%6C%79 ' ) );
</script>
This is how I solved it:
Posted: Sun Jun 10, 2012 3:58 am
by Rujith Krishnan
Haha! I made a javascript Encoder then found the meaning. Twas fugly