Text Encoder

Encode and decode text using various formats

Input Text

Output

Choose Format

Base64 Encode

Encode text to Base64

Base64 Decode

Decode Base64 to text

URL Encode

Encode for URLs

URL Decode

Decode URL encoding

HTML Encode

Encode HTML entities

HTML Decode

Decode HTML entities

Examples

Base64 Encoding

Input: "Hello World"

Output: "SGVsbG8gV29ybGQ="

URL Encoding

Input: "Hello World"

Output: "Hello%20World"

HTML Encoding

Input: "<div>"

Output: "&lt;div&gt;"

Decoding

Input: "SGVsbG8gV29ybGQ="

Output: "Hello World"