.decodeHex()

Description

decodeHex takes a hexadecimal representation of text, generated by .encodeHex() and converts it back to a string

Parameters

decodeHex takes no parameters

Usage

val = "68656c6c6f20776f726c64"

log val.decodeHex()
// hello world

Last updated