A Few Percent

Discussion of challenges you have already solved
Post Reply
slyFox
Posts: 2
Joined: Wed Sep 02, 2009 8:04 pm

A Few Percent

Post 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?
Microsoft: "You've got questions. We've got dancing paperclips."
michuber
Posts: 57
Joined: Sun Oct 26, 2008 3:30 pm

Re: A Few Percent

Post by michuber »

slyFox
Posts: 2
Joined: Wed Sep 02, 2009 8:04 pm

Post by slyFox »

thx
Microsoft: "You've got questions. We've got dancing paperclips."
User avatar
bodjo
Posts: 37
Joined: Sat Feb 26, 2011 9:27 am
Location: tunisia

Post by bodjo »

i think its a crypto more then a web chalenge
erry
Posts: 13
Joined: Sat Dec 11, 2010 2:23 pm

Post by erry »

i went on google and replaced in the URL the text given. so it displayed the answer :D
aringorang
Posts: 1
Joined: Fri May 20, 2011 8:27 am

Post by aringorang »

wynk
Posts: 7
Joined: Tue Jan 03, 2012 7:59 pm

Post 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
X.25
Posts: 3
Joined: Tue Mar 06, 2012 12:59 pm

Post by X.25 »

<script language="javascript">
document.write( unescape( '%66%75%67%6C%79 ' ) );
</script>
Rujith Krishnan
Posts: 1
Joined: Mon Jun 04, 2012 1:17 pm
Location: India
Contact:

This is how I solved it:

Post by Rujith Krishnan »

Haha! I made a javascript Encoder then found the meaning. Twas fugly Image
Post Reply