http://www.perlmonks.org?node_id=932456


in reply to Re^3: How to make an ascii flower variable
in thread How to make an ascii flower variable

Of course, we can always put the flower in a vase:

use utf8;
no strict 'refs';
${"✿"} = "works for me?";
say ${"✿"}

Good Day,
    Dean

  • Comment on Re^4: How to make an ascii flower variable

Replies are listed 'Best First'.
Re^5: How to make an ascii flower variable
by anneli (Pilgrim) on Oct 19, 2011 at 20:41 UTC

    Well, I think this solution would please everyone, OP included!