Hi I wish to print Japanese characters in HTML file as a crawl content. I tried to encode using both (cp1252) and (UTF-8) while printing in HTML, however I can't see those Japanese characters in that, instead I am getting some junk values. For example " 【外資系転職の " is printed as " ÂyŠOŽ‘Œn“] ". Thanks in advance

use strict; use warnings; use HTML::TreeBuilder::XPath; use LWP::UserAgent; use HTTP::Request; use HTML::Entities; use HTML::Strip; use Encode qw( decode_utf8 encode_utf8 ); open( OUT, '>:utf8', "C:/Users/jeyakuma/Desktop/test1.html" ); my $URL = 'http://job.japantimes.com/'; my $agent = LWP::UserAgent->new( agent => "Mozilla/5.0" ); my $request = HTTP::Request->new( GET => $URL ); my $response = $agent->request($request); # Check the outcome of the response if ( $response->is_success ) { my $xp = HTML::TreeBuilder::XPath->new_from_content( $response->de +coded_content ); my $raw_html = $xp->findnodes_as_string( '//td[@class="text12"]'); my $hs = HTML::Strip->new(); my $clean_text = $hs->parse($raw_html); $clean_text = decode_utf8($hs->parse(encode_utf8($raw_html))); $hs->eof; print OUT $clean_text; } elsif ( $response->is_error ) { print "Error:$URL\n"; print $response->error_as_HTML; }

In reply to How to print(encode) japanese characters in HTML using perl crawler by myfrndjk

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.