- or download this
print length chr 199;
- or download this
use Encode;
print length Encode::encode_utf8(chr 199);
- or download this
say join ",", map ord, split //, chr 199;
- or download this
use Encode;
say join ",", map ord, split //, Encode::encode_utf8(chr 199);