π¦ ClawHub
Base64 Encode
by @ohernandez-dev-blossom
Encode or decode text using Base64, URL percent-encoding, or HTML entities. Use when the user asks to encode, decode, base64 encode, base64 decode, URL encod...
π‘ Examples
Base64 encode:
Input: Hello, World!
Output: SGVsbG8sIFdvcmxkIQ==
Base64 encode (Unicode):
Input: HΓ©llo
Output: SMOpbGxv
Base64 decode:
Input: SGVsbG8sIFdvcmxkIQ==
Output: Hello, World!
URL encode:
Input: name=John Doe&city=New York
Output: name%3DJohn%20Doe%26city%3DNew%20York
URL decode:
Input: hello%20world%21
Output: hello world!
HTML encode:
Input:
Output: <script>alert("XSS")</script>
HTML decode:
Input: <h1>Hello & welcome</h1>
Output: Hello & welcome
βοΈ Configuration
type: base64 | url | html β default: base64direction: encode | decode β default: encodeTERMINAL
clawhub install base64-encode