I have exported some excel files from oracle pl database and now when I open it with excel or from python pandas I see string in this form: ÎÀÎÓÀØÅÈÊÈ and it should be like: პაპუაშვილი.
I have tried all the string.encode(encoding).decode(decoding) pairs from encodings.aliases, and can not get the desired result.
What I figured out so far is that
''.join(list(map(lambda x: chr(ord(x) + 4112), "ÎÀÎÓÀØÅÈÊÈ")))
gives me this string Can I have some custom encoding or is there any way so I do not have to call this method every time?