Recently I found the following code for a specific problem on a coding platform.
exec(bytes('㵔湩異ੴ㵦慬扭慤洺灡椨瑮听⤨献汰瑩⤨ⱸ㵹⡦㵤慛獢砨稭⬩扡⡳⥴潦ⱺ⁴湩汛獩⡴⡦⤩潦湩‧⨧湩⡴⡔⤩嵝瀊楲瑮搨椮摮硥洨湩搨⤩ㄫ洬湩搨⤩','u16')[2:])
I was completely shocked when I saw it the first time.
Then I tried figuring out what is happening there.
I converted that code into a simplified format and I found this.
>>> bytes('㵔湩異ੴ㵦慬扭慤洺灡椨瑮听⤨献汰瑩⤨ⱸ㵹⡦㵤慛獢砨稭⬩扡⡳⥴潦ⱺ⁴湩汛獩⡴⡦⤩潦湩‧⨧湩⡴⡔⤩嵝瀊楲瑮搨椮摮硥洨湩搨⤩ㄫ洬湩搨⤩', 'u16')
b"\xff\xfeT=input\nf=lambda:map(int,T().split())\nx,y=f()\nd=[abs(x-z)+abs(y-t)for z,t in[list(f())for i in' '*int(T())]]\nprint(d.index(min(d))+1,min(d))"
However, I could not find how that raw string was made.
Can somebody help me in finding out?