Translate Bytes to hexadecimals?

Hey,

I’m looking for a way to translate bytes input to hexadecimal’s data. Is there a node for that?
What is the best way to translate it and to use input like a channel value?

Here is my input (attached file). I know each byte’s value but I don’t how to do next steps.

Thanks

You can try an Evaluate DAT with

hex(int(me.inputCell.val))

in the Expression parameter.

I don’t have any result :frowning:

Any idea?

EDIT : yes that’s working! just need to convert them into table at the beginning and not in a single cell.

Hi there,
What should be the command if l want to convert other way round?
Using;
int(hex(me.inputCell.val))
produces an error.
Thanks!

i posted an example which converts between Hexadecimal, Decimal, and Ascii

See here: viewtopic.php?f=27&t=9789#p37022