Greetings. The following code should show the output "=マリウス" but shows "=xn--caaba8k0b0a7jzpccc.com" instead.

#!/usr/bin/perl use utf8; use URI; use Encode; use strict; use warnings; my $href="https://\x{30de}\x{30ea}\x{30a6}\x{30b9}.com/"; print $href,"\n"; my $uri = URI->new($href); my $domain = $uri->host; print ":",$domain,"\n"; $domain = Encode::decode('utf-8', $domain); print "=",$domain,"\n"; $domain = Encode::encode('utf-8', $domain); print ".",$domain,"\n"; exit(0);

What is a good way to get the variable $domain to contain "マリウス" as UTF-8? I've tried Encode::encode and Encode::decode in several permutations but that is probably not the right way. Is there some way to wrap the URI function in such a way as to have it process Unicode?

ps. This web form has trouble with the Japanese as well and has converted the string to a bunch of HTML entities.

Edit: added use utf8; and redid $href definition.


In reply to CPAN's URI.pm versus Japanese as Unicode? by mldvx4

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.