Language Reference Guide : A. System Constants and Keywords : System Constants : Encoding Format
 
Share this page                  
Encoding Format
Constant Value
Description
Numeric
Equivalent
EF_HEX
Each pair of hexadecimal characters in the string represents a single byte of binary data. For example, the string '00017F' is loaded as three bytes containing the values 0, 1, and 127.
1
EF_BASE64
The string represents binary data that has been converted to text using the Base64 Content-Transfer-Encoding1 algorithm. For example, the string 'AAF/' is loaded as three bytes containing the values 0, 1, and 127.
2