GHC6.12.1のリリースノートに
> The I/O libraries are now Unicode-aware, so your Haskell programs should now handle text
> files containing non-ascii characters, without special effort

って書いてあるんだけど、これって、ghciで、

Prelude> ["あああ","いいい"]
["あああ","いいい"]
Prelude>

みたいに、エスケープされていない文字列で出力されるっていうこと?