Thread JSON und utf8 (25 answers)
Opened by rosti at 2018-05-06 18:58

rosti
 2018-05-07 18:44
#188355 #188355
User since
2011-03-19
3193 Artikel
BenutzerIn
[Homepage]
user image
WTF:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
my $amt = "Fünf €";
my $r = {amt => $amt}; 
use bytes;
print JSON::to_json($r), "\n", $amt;

Ausgabe:

{"amt":"Fünf €"}
Fünf € # $amt OK


.

View full thread JSON und utf8