Re: Playing with Unicode

2004-03-26 Thread James Edward Gray II
On Mar 25, 2004, at 6:54 PM, Randy W. Sims wrote: On 3/25/2004 5:42 PM, James Edward Gray II wrote: Why when I run this one-liner: perl -e 'print \x{2660}\n' do I see this: Wide character in print at -e line 1. I'm assuming that's a warning, since I still get the expected output, but why am I

Playing with Unicode

2004-03-25 Thread James Edward Gray II
Why when I run this one-liner: perl -e 'print \x{2660}\n' do I see this: Wide character in print at -e line 1. I'm assuming that's a warning, since I still get the expected output, but why am I getting it, when I didn't ask for them? Is there a better way to drop in a unicode character?

Re: Playing with Unicode

2004-03-25 Thread Randy W. Sims
On 3/25/2004 5:42 PM, James Edward Gray II wrote: Why when I run this one-liner: perl -e 'print \x{2660}\n' do I see this: Wide character in print at -e line 1. I'm assuming that's a warning, since I still get the expected output, but why am I getting it, when I didn't ask for them? Is there

Re: Playing with Unicode

2004-03-25 Thread david
James Edward Gray II wrote: Why when I run this one-liner: perl -e 'print \x{2660}\n' do I see this: Wide character in print at -e line 1. I'm assuming that's a warning, since I still get the expected output, but why am I getting it, when I didn't ask for them? different version

Re: Playing with Unicode

2004-03-25 Thread R. Joseph Newton
James Edward Gray II wrote: Why when I run this one-liner: perl -e 'print \x{2660}\n' do I see this: Wide character in print at -e line 1. Makes sense. 2660 would overflow a one-byte character. I'm assuming that's a warning, since I still get the expected output, but why am I