What is the difference between encodeURI and encodeURIComponent?
encodeURI encodes a full URL but leaves reserved chars (; , / ? : @ & = + $ #) unencoded. encodeURIComponent encodes everything including those chars, making it correct for individual query parameter values. This tool uses encodeURIComponent behavior.