%dw 2.0
import * from dw::core::Binaries
output application/dw
---
{ "hexToBinary": fromHex("4D756C65") }
DataWeave
fromHex
fromHex(hexString: String): Binary
Transforms a hexadecimal string into a binary.
Parameters
Name | Description |
---|---|
|
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
Output
{
hexToBinary: "TXVsZQ==" as Binary {base: "64"}
}
JSON