When I send a POST request to a certain url, I get the string like that:
Compruebe si las direcciones URL que encontr\u00e9 en el archivo de configuraci\u00f3n son v\u00e1lidos
How do I decode strings, such as:
\u00e9
\u00f3
\u00e1
I've tried different things:
#It gives weird result:
$text =~ s/\\u(.{4})/pack('u', $1)/ge;
$text =~ s/\\u(.{4})/pack('U', $1)/ge;
#Says, nonnumeric argument:
$text =~ s/\\u(.{4})/pack('u', "0x$1")/ge;
$text =~ s/\\u(.{4})/pack('U', "0x$1")/ge;
$text =~ s/\\u(.{4})/chr("0x$1")/ge;
#Just stays as a changed string (\x{00e9}, \x{00f3}, \x{00e1},
#or with \0x{....}), doesn't interpolate:
$text =~ s/\\u(.{4})/\\x{$1}/g;
$text =~ s/\\u(.{4})/\\0x{$1}/g;
#does not change anything:
use Text::Unidecode;
$text =~ s/\\u(.{4})/unidecode($1)/ge;
How to convert those encoded strings to utf8 chars?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.