PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
Created by HOPE
#debugged by Manual for question
question: https://www.sololearn.com/Discuss/2013650/?ref=app
"""
__import__("sys").stdout.reconfigure(encoding="utf-16")
a = b'\xd8\xa2\xd9\xbe\xd8\xa7\xd8\xb1\xd8\xa7\xd8\xaa - \xd8\xb3\xd8\xb1\xd9\x88\xdb\x8c\xd8\xb3 \xd8\xa7\xd8\xb4\xd8\xaa\xd8\xb1\xd8\xa7\xda\xa9 \xd9\x88\xdb\x8c\xd8\xaf\xdb\x8c\xd9\x88'
print(type(a)) # not necessary. check to make sure the type is binary
print(a.decode('utf-8'))
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run