Re: What does ord mean?
[email protected] (John Delacour)
| Newsgroups | perl.macosx |
|---|---|
| Message-ID | <p06240850c5d521a4aa14@[10.0.0.1]> |
At 20:44 -0500 4/3/09, Paul G. Hackett wrote:
>NO-BREAK SPACE is 00A0, which in UTF-8 is xC2 xA0. Hex xC2 = Decimal 194.
so
#!/usr/bin/perl -w
use strict;
use utf8;
print ord(" "), "\n";
JD