```js var btoa = require("btoa") var atob = require("atob") btoa('✓'); // "Ew==" (not right, should be "4pyT") atob(btoa('✓')); // "\u0013" (not right) ```