简体   繁体   中英

How come the pound sign '£' in Haskell is shown as '\163' instead of outputting '£'? [duplicate]

I'm trying to write a program that writes the pound sign '£' in Haskell, but it outputs '\163' whenever I try to use it. I'm guessing that this is some alphanumeric code, but how do I get it to display what I want it to? I'm writing to the console, when calling a function that returns '£'.

Thank you.

This was solved by using putStrLn, because print and show do not allow for non-ASCII characters to be shown.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM