Using a string as hex not as string

See this...

Essentially - you can use a function node

e.g.

msg.payload = Buffer.from("HEX_STRING_HERE","hex").toString()
return msg;

Some proof...
image