Converts text to Base64 encoding (A-Z, a-z, 0-9, +, /)
Base64 is an encoding scheme that converts binary data into ASCII text using 64 characters (A-Z, a-z, 0-9, +, /).
No. Base64 is encoding, not encryption. Anyone can decode it. Never use it to hide sensitive data.
Base64 is used to safely transmit binary data (like images) through text-only channels like email or JSON.