URL Encoder/Decoder

Encode and decode URLs, Base64, and HTML entities safely

URL Encode
URL Decode
Base64 Encode
Base64 Decode
HTML Encode
HTML Decode

Encoding Information

URL Encoding

Converts special characters in URLs to percent-encoded format. Essential for web development and API calls.

Example:
hello worldhello%20world
Base64 Encoding

Encodes binary data into ASCII text format. Commonly used for data transmission and storage.

Example:
helloaGVsbG8=
HTML Encoding

Converts HTML special characters to entities. Prevents XSS attacks and displays HTML as text.

Example:
<tag>&lt;tag&gt;