I have a text file, which contains lines with data(key-values pairs):
"\x80\x80\x13_@\x80":"\xff\xff\x80Sometext\x56\"\x64\u0001(more bytes with unicode reprsentation and unicode and latin symbols)\xfdg\u0080moretext\x30中\x52\x23\x24P"
(maybe \U00000000 (not sure))
(it is mixed actually and I have hard time understanding how to convert this to bytes format because I need data from the file.
When I read as bytes I have hard time figuring how to deal with it. If I read as text it has two \ before.
(it is a dump from golang/leveldb, I wanted to split it to extract the wav data).