2
retoor
24h

Can you read this secret message?

73 102 32 121 111 117 32 97 114 101 32 68 101 109 111 108 105 115 104 117 110 44 32 121 111 117 39 118 101 32 119 111 110 32 116 104 101 32 103 97 109 101 33

Comments
  • 3
  • 6
    I‘m too lazy to copy it over into an ascii converter
  • 2
    @Lensflare you could just tag GPT with the values, but nobody is that lame right?
  • 2
    @Lensflare 76 101 110 115 102 108 97 114 101 44 32 108 97 122 121 32 102 117 99 107 46
  • 2
    #!/usr/bin/python3

    todecodestr = "73 102 32 121 111 117 32 97 114 101 32 68 101 109 111 108 105 115 104 117 110 44 32 121 111 117 39 118 101 32 119 111 110 32 116 104 101 32 103 97 109 101 33"

    print("string to decode:")

    print(todecodestr)

    message = ''.join([chr(int(ichar)) for ichar in todecodestr.split(" ")])

    print("message:")

    print(message)

    ...

    70 117 99 107 33
  • 3
    @retoor
    The converted text is: "Fuck!"
  • 1
  • 1
    73 32 101 118 101 110 32 117 115 101 100 32 99 111 109 112 114 101 104 101 110 115 105 111 110 115 33
  • 1
    #!/usr/bin/python3

    todecodestr = "73 102 32 121 111 117 32 97 114 101 32 68 101 109 111 108 105 115 104 117 110 44 32 121 111 117 39 118 101 32 119 111 110 32 116 104 101 32 103 97 109 101 33"

    message2 = "76 101 110 115 102 108 97 114 101 44 32 108 97 122 121 32 102 117 99 107 46"

    messages = [todecodestr, message2]

    print("string to decode:")

    print(todecodestr)

    for msg in messages:

    message = ''.join([chr(int(ichar)) for ichar in msg.split(" ")])

    print("message:")

    print(message)

    print("\n")

    newmessage = "Fuck!"

    comp = "I even used comprehensions!"

    outnewmessages = [newmessage, comp]

    for newmessage in outnewmessages:

    message = ' '.join([str(ord(char)) for char in newmessage])

    print(message)
  • 1
    @Demolishun yh, comprehensions are genius huh.
  • 1
    I'm guessing it's a bunch of colors or a curse word.
  • 2
    @cuddlyogre based on the upvotes it's only funny for one person 😁 It was a very easy to hack for a reason 😁 I'm sure many people did decode it, like many have watched the video in my profile but just don't want to admit it :)
Add Comment