Pop quiz: characters or bytes? 

use utf8;
use JSON::XS qw(encode_json);

my $data = { price => '€9.99' };
my $json = encode_json($data);

say $json;