Search notes:

Python: re (regular expresion) examples

Replace Unicode code point representations with character

>>> print(re.sub(r'\\u(....)', lambda u: chr(int(u.group(1), 16)), r'\u0052\u0065\u006e\u00e9'))
René

Index