79090369

Date: 2024-10-15 14:23:40
Score: 1
Natty:
Report link

For Python3.6+:

#!/usr/bin/python3

for i in range(0x0, 0x100):
     s = "\\" + "u" + f"{i:#0{6}x}"[-4:]
     print(s[-2:], end=" = ")
     print(s.encode('utf-8').decode('unicode_escape'))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: life