Href Path Encoder
Paste a file path or URL with spaces and get an href-safe version: spaces to %20 on their own, or the fully encoded URL, each with one-click copy.
Spaces only (space → %20, nothing else touched)
Use this when the path is already URL-shaped and only the spaces are the problem – encoding more would double-encode any % it already carries.
Fully encoded (every href-unsafe character)
encodeURI handles spaces plus the other characters an href trips on, and leaves URL structure (slashes, colons, query strings) alone.