Plaster

common-lisp
(defun hexlify-op-code (op-code) "Turns b8 into \xb8 for example" (concatenate 'string "\\" "x" op-code)) CL-USER> (hexlify-op-code "b8") "\\xb8"