Contact Us 1-800-596-4880

fromHex

fromHex(String): Binary

Transforms a hexadecimal string into a binary.

Parameters

Name Description

hexString

A hexadecimal string to transform.

Example

This example transforms a hexadecimal string to "Mule". To make the resulting type clear, it outputs data in the application/dw format.

Source

%dw 2.0
import * from dw::core::Binaries
output application/dw
---
{ "hexToBinary": fromHex("4D756C65") }

Output

{
    hexToBinary: "TXVsZQ==" as Binary {base: "64"}
}