Encode and decode URLs, Base64, and HTML entities safely
Converts special characters in URLs to percent-encoded format. Essential for web development and API calls.
hello world → hello%20world
Encodes binary data into ASCII text format. Commonly used for data transmission and storage.
hello → aGVsbG8=
Converts HTML special characters to entities. Prevents XSS attacks and displays HTML as text.
<tag> → <tag>