in reply to Representing "binary" character in code?
SoThe following escape sequences are available in constructs that interpolate and in transliterations.
... \033 octal char (ESC) \x1b hex char (ESC) \x{263a} wide hex char (SMILEY) \c[ control char (ESC) \N{name} named Unicode character
may be what you want. Though it looks like you have some encoding issues to think about too.from => "\x9f", to => "\x{178}"
|
|---|