Re: [Haskell-cafe] How to "show" a utf8 string?

2012-01-10 Thread Magicloud Magiclouds
Thank you guys. I forgot the point that print involves show.

On Tue, Jan 10, 2012 at 6:27 PM, Roel van Dijk  wrote:
> Have you tried using putStrLn?
>
> Small GHCI example:
>
>  Prelude> putStrLn "\29579"
>  王
>
> I believe the Show instances for chars and strings escape all
> characters with a codepoint > 127.
>
> 2012/1/10 Magicloud Magiclouds :
>> Hi,
>>  I am using LDAP hackage to do some ldap searching. I am not sure if
>> this is its problem. All Chinese chars returned like "\29579".
>>  How to convert it to the actual Chinese char? I thought it was my
>> terminal's fault, so tried to use System.IO.UTF8 to put the result
>> into a file and viewed by firefox, no luck.
>> --
>> 竹密岂妨流水过
>> 山高哪阻野云飞
>>
>> ___
>> Haskell-Cafe mailing list
>> Haskell-Cafe@haskell.org
>> http://www.haskell.org/mailman/listinfo/haskell-cafe



-- 
竹密岂妨流水过
山高哪阻野云飞

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] How to "show" a utf8 string?

2012-01-10 Thread Felipe Almeida Lessa
On Tue, Jan 10, 2012 at 7:55 AM, Magicloud Magiclouds
 wrote:
> Hi,
>  I am using LDAP hackage to do some ldap searching. I am not sure if
> this is its problem. All Chinese chars returned like "\29579".
>  How to convert it to the actual Chinese char? I thought it was my
> terminal's fault, so tried to use System.IO.UTF8 to put the result
> into a file and viewed by firefox, no luck.

Are you using "print"?  Did you try "putStrLn"?

Cheers, =)

-- 
Felipe.

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] How to "show" a utf8 string?

2012-01-10 Thread Roel van Dijk
Have you tried using putStrLn?

Small GHCI example:

  Prelude> putStrLn "\29579"
  王

I believe the Show instances for chars and strings escape all
characters with a codepoint > 127.

2012/1/10 Magicloud Magiclouds :
> Hi,
>  I am using LDAP hackage to do some ldap searching. I am not sure if
> this is its problem. All Chinese chars returned like "\29579".
>  How to convert it to the actual Chinese char? I thought it was my
> terminal's fault, so tried to use System.IO.UTF8 to put the result
> into a file and viewed by firefox, no luck.
> --
> 竹密岂妨流水过
> 山高哪阻野云飞
>
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


[Haskell-cafe] How to "show" a utf8 string?

2012-01-10 Thread Magicloud Magiclouds
Hi,
  I am using LDAP hackage to do some ldap searching. I am not sure if
this is its problem. All Chinese chars returned like "\29579".
  How to convert it to the actual Chinese char? I thought it was my
terminal's fault, so tried to use System.IO.UTF8 to put the result
into a file and viewed by firefox, no luck.
-- 
竹密岂妨流水过
山高哪阻野云飞

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe