Follow the ask prompts to either encode to or decode from Base64. (NOTE: This project only supports the basic ASCII character set [all keys on a standard keyboard] and binary [1 and 0])
Wikipedia (Base64 and ASCII Article) Scratch Wiki (Converting decimal to binary) Mrk20200 If you are planning to use this in your project, you should backpack the "Base64" sprite instead of backpacking the scripts because the three lists and extra costume are required for the blocks to work. Make sure to credit me if you use this! (5/19/2024) v1.5: Code refactor for encoding (now doesn't rely on a lookup table for conversion from binary to Base64, makes it faster) (5/19/2024) v1.4: Major optimizations for encoding (saved half of encoding time in binary mode by removing a repeat loop) v1.3: Minor optimizations v1.1.1 (only to demo): Binary decode result shows in output list v1.1: Added binary support. This could be used to heavily compress tile level codes. v1.0: Released