URL Encoder/Decoder
Encode or decode URLs and query parameters. Useful for working with URLs that contain special characters.
encodeURI vs encodeURIComponent
encodeURI
Encodes a complete URI, preserving characters that have special meaning in a URL:
; , / ? : @ & = + $ #
Use when encoding a full URL.
encodeURIComponent
Encodes all characters except:
A-Z a-z 0-9 - _ . ! ~ * ' ( )
Use when encoding query parameters or parts of a URL.
You might also need
Convert text between different cases
Encode or decode text to and from Base64 format
Convert files between PDF and Word formats
Convert images between JPG and PNG formats
Convert HEIC images from iPhone/iOS to JPG format
Format, validate and beautify JSON data
Compare text differences between two files or snippets
Generate secure passwords with customizable options
Generate UUIDs (v1, v4) for unique identifiers
Generate QR codes and barcodes from text
Create favicons from images for your website
Test and debug regular expressions with live preview
Decode and inspect JWT tokens
Generate and validate cron expressions
Calculate aspect ratios and resize dimensions
Convert between timestamps and human-readable dates