Alberto Capitani
Alberto Capitani

Reputation: 1049

GHC: Display of unicode characters

Further to my first question on the management of the unicode characters in the production of .exe file, this is also a bug in GHC?

> print "Frère"
"Fr\233re"

Upvotes: 5

Views: 3214

Answers (2)

AardvarkSoup
AardvarkSoup

Reputation: 1081

print x is equivalent to putStrLn (show x), where show converts a type of the Show class to a string representation.

In your case, x already has the String type. One might think that the String implementation of show would simply return its argument unchanged, but actually it transforms it into an ASCII string literal token with the same syntax as used in Haskell source code. This is done by surrounding it with quotes and by escaping 'special' characters (basically whatever is not on your keyboard).

So, this is not a bug but rather the expected behavior of print. If you want to output your string directly, use putStrLn instead.

Upvotes: 13

Try

> putStrLn "Frère"
Frère      

Upvotes: 2

Related Questions