Start of change

URLDECODE scalar function

The URLDECODE function completes URL decoding of the provided text.

Read syntax diagramSkip visual syntax diagram URLDECODE ( VALUE =>  character-string , ENCODING =>  encoding )
The schema is SYSTOOLS.
character-string
A character string that is currently encoded. The length cannot exceed 4096 characters.
encoding
A character or graphic string that specifies the encoding that was used for encoding characters that are not values in a URL. The default and recommended value is UTF-8. Otherwise, this is a charset that follows the naming conventions defined in RFC 2278: IANA Charset Registration Procedures.

The result of the function is a varying length character string that contains character-string after being decoded.

End of change