Decode Base64 strings

Convert a Base64 (or tetrasexagesimal) encoded string back to plain text.

Face with waiting expression Nothing to see yet!

Loading takeymakey...
TakeyMakey code
Want this tool to do something else? Edit the code below and make it do whatever you want.
export const make = (text) => {
  return atob(text)
}