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

/ (?[ ( \p{Word} & \p{XID_Start} ) + [_] ]) (?[ ( \p{Word} & \p{XID_Continue} ) ]) * /x
and \p{Word} is unicode word chars ... if you lookup Unicode Character 'GLOBE WITH MERIDIANS' (U+1F310) its categorized as symbol not word
  • Comment on Re^3: "Unrecognized character" while use utf8 is in effect (perldata/Identifier parsing)
  • Download Code