The URL-ENCODE directive encodes a string to the application/x-www-form-urlencoded
MIME format.
url-encode <column>
The <column>
contains a URL to be encoded.
See https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1 for details of these rules.
When encoding a string, these rules apply:
- The alphanumeric characters
a
throughz
,A
throughZ
, and0
through9
remain unchanged - The special characters
.
,-
,*
, and_
remain unchanged - The space character
+
) - All other characters are considered unsafe and are first converted into one or more
bytes using an encoding scheme. Each byte is then represented by a 3-character string
%xy
, wherexy
is the two-digit hexadecimal representation of the byte. The recommended encoding scheme to use is UTF-8. However, for compatibility reasons, if an encoding is not specified, then the default encoding of the platform is used.
Note: Uses UTF-8 as the encoding scheme for the string.
See also the URL-DECODE directive.