Copy as Markdown View as Markdown (opens in new tab) View on GitHub (opens in new tab) Open in... ChatGPT (opens in new tab) Claude (opens in new tab) Perplexity (opens in new tab) fromHex fromHex(hexString: 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"} }