I've seen a few other programs that have something like this:
var string = '\x32\x20\x60\x78\x6e\x7a\x9c\x89';
And I had to try to fiddle with the numbers and letters, to find the text I wanted to display.
I'm wondering if there is a function to find the \x
escape of a string, like string.toUpperCase()
in JS. I'm using processingJS, but it will be okay for me to use other programming languages to find the ASCII for \x
.