in reply to Re^2: Convert hex to HTML
in thread Convert hex to HTML
Yes, you could well be right about that.
#!/usr/bin/env perl -l use strict; use warnings; use JSON; my $text = '{"html":" \u003cdiv class=\"ja-job-details\"\u003e \u003ch +2 ' . 'class=\"title\"\u003eGlobal Service ..."}'; print decode_json($text)->{html};
Output:
<div class="ja-job-details"> <h2 class="title">Global Service ...
-- Ken
|
|---|