What does this normalization code print?

from Natural language processing
Python 3.14 beginner 2 min

What does this normalization code print?

Python
import unicodedata

original = "Pay 5€"
matching = unicodedata.normalize("NFKC", original).casefold()
print(matching)
print(original)
Open in playground
Report an error