Good day! I'm having trouble with decoding text to unicode. I need to convert str which is equal to
'\u4038' # or something like that
in ASCII and I need to convert this string to ONE unicode symbol. Can you please explain< how to do that? The
len(unicode('\u4038'))
prints 6, so this is not a solution:(
If it's needed, the resulting symbol is cyrillic at the most cases.
'\\u4038'?jsonmodule.unicode-escapethen something is broken in your data pipeline. Find the source of'\u4038'and fix it instead of usingunicode-escapeencoding.