Get your own Python server Result Size: 625 x 565
x
 
import re
txt = "Åland"
#Find all UNICODE matches:
print(re.findall("\w", txt, re.UNICODE))
#Same result using the shorthand re.U flag:
print(re.findall("\w", txt, re.U))
['Å', 'l', 'a', 'n', 'd']
['Å', 'l', 'a', 'n', 'd']