> Till next 'tim'
It took me a few times to see the morged version actually says tiന്ന
For the curious:
$ python -c 'print(list(map(__import__("unicodedata").name, "ന്ന")))' ['MALAYALAM LETTER NA', 'MALAYALAM SIGN VIRAMA', 'MALAYALAM LETTER NA']
$ pyp 'map(unicodedata.name, "ന്ന")' MALAYALAM LETTER NA MALAYALAM SIGN VIRAMA MALAYALAM LETTER NA
For the curious:
(The "pypyp" package, by Python core dev and mypy maintainer Shantanu Jain, makes this easier:)