codegenerato.rs

URL Encoder / Decoder

Transform URLs with multiple encoding methods

0 chars
Quick examples:
0 chars

encodeURIComponent

Encodes all characters except: A-Z a-z 0-9 - _ . ! ~ * ' ( )

Best for encoding query parameters and path segments.

encodeURI

Encodes characters except: : / ? # [ ] @ ! $ & ' ( ) * + , ; =

Best for encoding complete URLs while preserving structure.

Form URL Encoded

Uses + for spaces instead of %20

Used for application/x-www-form-urlencoded form data.