HexToStr
From SCAR Divi Manual
Definition
function HexToStr(const Str: AnsiString): AnsiString;
Availability
SCAR Divi 3.31 > Current
Description
Decodes a given string Str from hexadecimal format to a regular string. If the input string was not in hexadecimal format, the function returns an empty string. The entered string is not case-sensitive. This process can be reversed with StrToHex.
Example
begin WriteLn(HexToStr('48656C6C6F20576F726C6421')); end.
Output:
Hello World!