Script Kit Logo
Script Kit
by John Lindquist
Vercel OSS Program

Scripts by ElTacitos

Decode a base64 string

ElTacitos's avatar
ElTacitos
// Name: Decode Base64 // Description: Decode a base64 string and copy it to the clipboard // Author: ElTacitos import "@johnlindquist/kit" let base64 = await arg("Enter base64 string to decode") let decoded = atob(base64) await clipboard.writeText(decoded) await div(md(` # ${decoded} `))