I've been trying to capitalize loads of strings, and some of them start with utf-8 characters. Problem is, they don't capitalize!
mystring = 'lucas'
mystring.capitalize() # returns 'Lucas'
mytring = 'æthelred'
mystring.capitalize() # returns 'æthelred'
Same with vowels containing `´^¨ and the characters ð, þ, e.t.c. What do I do to solve this?
I actually don't have access to the string, I get them somewhere else, in a text file...