python and unicode
I like python's unicode handling. Instead of perl's situation, where file handles are assumed, by default, to be latin-1, python file handles (including STDIN/OUT) are assumed, by default, to be ASCII. Forget nasty things like '☃', in python, you can't even print 'é' without explicitly telling it how. Lovely.