ng:hexToUtf8

ng:hexToUtf8

This section explains the built-in XPath function:

ng:hexToUtf8(hexValue)

Returns the UTF-8 characters that are specified as the hexValue input string (must be the hex codes of the characters' byte-sequence in UTF-8 encoding).

 

For the 2D barcodes like PDF417 and QR you might want to insert unprintable characters e.g. Hex 1D, 1E and similar as delimiters. If you want to insert such texts you can e.g. define them with this function and use concat to insert them between the variable data.

 

Example:

ng:hexToUtf8('616263')

 Displays: abc

    • Related Articles

    • ng:decrypt

      The built-in function, ng:decrypt is linked with the encryption functions: ng:encrypt and the workflow component, Set secure workflow variable. The function, ng:decrypt() can decrypt contents, that was previously encrypted with these functions. The ...
    • ng:resourceExist

      This function checks, if a resource in InterFormNG2 exists or not. The function returns a boolean: true or false. The ng:resourceExist Xpath function has this format: ng:resourceExist(resource,path) where: resource Resource is the type of resource in ...
    • ng:minimum

      InterFormNG2 includes the special built-in XPath function, ng:minimum. This function returns the smallest value of two numeric arguments. The function only accepts two numeric arguments - no more and no less. Examples: ng:minimum(-14,2) returns: -14 ...
    • ng:base64

      The built-in function, ng:base64() converts a string (text) into a base64 based string. This can e.g. be used, if you want to insert any kind of data into an XML node, without substituting any characters, that are not allowed. This function is ...
    • ng:spaceConcat

      The built-in function, ng:spaceConcat(), helps concatenate two strings with a space character automatically inserted between them. Here is an example: This XPath expression: ng:spaceConcat('First name:', 'Jon') outputs this string: First name: Jon ...