pathUnescape does the inverse transformation of pathEscape, converting each 3-byte encoded substring of the form "%AB" into the hex-decoded byte 0xAB. It throw an error if any % is not followed by two hexadecimal digits.
pathUnescape is identical to queryUnescape except that it does not unescape '+' to ' ' (space).
pathUnescape does the inverse transformation of pathEscape, converting each 3-byte encoded substring of the form "%AB" into the hex-decoded byte 0xAB. It throw an error if any % is not followed by two hexadecimal digits.
pathUnescape is identical to queryUnescape except that it does not unescape '+' to ' ' (space).
Throws
EscapeException