Base64 Converter
Convert files to Base64 strings and vice-versa. Useful for embedding files in code or sending via APIs.
About Base64:
• Base64 encoding converts binary data into ASCII text format
• Commonly used for embedding images, PDFs, and other files in code
• The output string will be approximately 33% larger than the input file
• Format example: data:image/jpeg;base64,/9j/4AAQSkZJRg...