79205266

Date: 2024-11-19 22:48:53
Score: 2
Natty:
Report link

I did it this way:

def toUnicodeEscape(text):
  oof = []
  for i in text:
    oof.append(f'u00{hex(ord(i))[-2:]}')
  result = '\\'
  result += '\\'.join(oof)
  return result
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Not Sure