in reply to Re: How do I convert a sequence of hexes (D0 D6) to Chinese characters (中)?
in thread How do I convert a sequence of hexes (D0 D6) to Chinese characters (中)?

chr( hex( 0xD0D6 ) )

...should be written as chr( hex( '0xD0D6' ) ), shouldn't it?


Dave

Replies are listed 'Best First'.
Re^3: How do I convert a sequence of hexes (D0 D6) to Chinese characters (中)?
by kejohm (Hermit) on Jun 06, 2011 at 01:09 UTC

    Yes, thanks for that. I've fixed my post.