Typical error on Windows because the default user directory is C:\user\, so when you want to use this path as an string parameter into a Python function, you get a Unicode error, just because the \u is a Unicode escape. Any character not numeric after this produces an error.
To solve it, just double the backslashes: C:\\user\\<\your_user>...