if I escape '가온' in javascript,
the result would be:
escape('가온')
'%uAC00%uC628'
I want to get the same result like the js in python.
However, if I encode as ascii like:
byte_string= "누리".encode('ascii', 'backslashreplace')
b'\\ub204\\ub9ac'
the result isn't same. How can I?