Encode and decode text using various formats
Encode text to Base64
Decode Base64 to text
Encode for URLs
Decode URL encoding
Encode HTML entities
Decode HTML entities
Input: "Hello World"
Output: "SGVsbG8gV29ybGQ="
Output: "Hello%20World"
Input: "<div>"
Output: "<div>"
Input: "SGVsbG8gV29ybGQ="
Output: "Hello World"