decodeHex takes a hexadecimal representation of text, generated by .encodeHex() and converts it back to a string
decodeHex takes no parameters
val = "68656c6c6f20776f726c64" log val.decodeHex() // hello world
Last updated 1 year ago