Setting raw bytes

I’m setting bytes from hex codes for serial communication using the rs232 node.

Currently I’m doing this -

[spread of single byte hex codes](spread of single byte hex codes) >
Ord (to decimal) >
Spellvalue (to ascii) >
Add string spectral >
AsRaw

when all I really want is to input that data straight into raw format (as is displayed when I hover the cursor over the AsRaw output.

Is there a neater way?

EDIT: ok can go AsRaw straight after the ord. That’s probably neat enough

just to confirm:

since beta>=32 IOBox (Node) displays hex but still does not allow you to edit. so for now the route is still IOBox (String) -> Ord (String) -> AsRaw (Value)