I am getting a value of column from database like below:
`;;][@+©
When I am reading this in my Python code this is giving below error message:
UnicodeDecodeError: 'utf8' codec can't decode byte 0xa9 in position 7: invalid start byte
Then I tried below code but not working:
unicode(' `;;][@+©', 'utf-8')
Now how can I solve this problem?