I am usign the Rpi to extract information from SQL server's tables and I am having some problems at the moment to decode the following uncode data in Python: u'\U00300032\U00360031\U0030002d\U002d0039\U00310032'
which is a date data, when I asign this value to a variable I get this error:
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 0-9: end of string in escape sequence
I have read so many information about the topic but I don't find useful information, what I want is convert to a string type.Am I missing something here?