AnAnd then use things like:
$ logger $'St\xe9phane'
$ journalctl --since today -o json | perl -MJSON -MData::Dumper -lne '
BEGIN{$j = JSON->new}
$j->incr_parse($_);
while ($obj = $j->incr_parse) {
$msg = $obj->{MESSAGE};
# handle array of integer representation
$msg = join "", map(chr, @$msg) if ref $msg eq "ARRAY";
print $msg
}' |
sed -n '/phane/l'
St\351phane$