Skip to content

Instantly share code, notes, and snippets.

@minibugdev
Created July 14, 2022 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minibugdev/6e1276674dbf07a4c188c2f7f33e460b to your computer and use it in GitHub Desktop.
Save minibugdev/6e1276674dbf07a4c188c2f7f33e460b to your computer and use it in GitHub Desktop.
import java.util.Base64
fun main() {
val secret = "aWFuZ25vVzpOQU06RU5JTDp0YTpzdTpuaW9K"
val mysteriousCode = String(Base64.getDecoder().decode(secret)).reversed()
println("Mysterious Code: $mysteriousCode")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment