in reply to Re^2: "Unrecognized character" while use utf8 is in effect (perldata/Variable names)
in thread "Unrecognized character" while use utf8 is in effect
No prob, here is more explicit :)
If you keep reading up to section http://perldoc.perl.org/perldata.html#Identifier-parsing it says
and \p{Word} is unicode word chars ... if you lookup Unicode Character 'GLOBE WITH MERIDIANS' (U+1F310) its categorized as symbol not word/ (?[ ( \p{Word} & \p{XID_Start} ) + [_] ]) (?[ ( \p{Word} & \p{XID_Continue} ) ]) * /x
|
---|