I have a list of code points (U+XXXX) that I need to convert into real characters. My code points are for UTF-8. I've scoured the previous mentions of unicode and don't see how to do that.
I can strip U+XXXX to get the number (XXXX), but then what? Some have suggested "unichr()" but that is not even recognized in Python3.
Sorry if this is basic; just started programming in Python.