Run this in your browser console:
btoa('café');
// 'Y2Fm6Q=='
Enter fullscreen mode
Exit fullscreen mode
Run this in your browser console: btoa('café'); // 'Y2Fm6Q==' Enter fullscreen mode ...
Run this in your browser console:
btoa('café');
// 'Y2Fm6Q=='
Enter fullscreen mode
Exit fullscreen mode

Ever pasted a Base64 string into atob() and gotten this? Uncaught DOMException: Failed to execute...

Base64 is not encryption — it's encoding. If you paste Hello into a Base64 encoder and get SGVsbG8=,...

Every developer pastes a data:image/png;base64,iVBORw0K... blob into their CSS at some point, decodes...

A text-to-binary function can pass every test with Hello and still produce the wrong bytes for...

The Mathematical Alphanumeric Symbols block looks like a clean 26-letter run you can index into. It is not. Five of its alphabets…

"It works fine on my Mac, but it crashes the moment we hand it to Windows" is a report a lot of...