PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
by Manual
for question: https://www.sololearn.com/Discuss/2031141/?ref=app
unicode converter
https://www.branah.com/unicode-converter
utf-8 for this example
"""
__import__("sys").stdout.reconfigure(encoding="utf-16")
# I use utf-8 unicode
a = b'\xd0\x9f\xd1\x80\xd0\xb8\xd0\xb2\xd0\xb5\xd1\x82'
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