in reply to language Decoding problem..?

I think you may want to first decode the HTML and then encode the string as UTF-8.

use strict; use warnings; use HTML::Entities; use Encode 'encode'; my $titlenamefromindex=q{ஸ்ரீசா&#x +BA8;்த், சவான், &#xB9 +A;ண்டிலா ஆகி&#x +BAF;ோர் தங்களத& +#xBC1; குற்றங்க&#xBB3 +;ை ஒப்புக் க&#x +BCA;ண்டதாக தகவ& +#xBB2;&#xBCD}; $titlenamefromindex = decode_entities($titlenamefromindex); print encode('UTF-8', $titlenamefromindex ), "\n";

Output:
ஸ்ரீசாந்த், சவான், சண்டிலா ஆகியோர் தங்களது குற்றங்களை ஒப்புக் கொண்டதாக தகவல்

Replies are listed 'Best First'.
Re^2: language Decoding problem..?
by vasanthgk91 (Sexton) on May 18, 2013 at 06:40 UTC

    thank u

    use HTML::Entities; use Encode; my $title_checking=$cgi->param("title_checking"); $title_checking=decode_entities($title_checking); $title_checking=encode('UTF-8',$title_checking); $title_checking=$prl->trim($title_checking); print "$title_checking";

    It's working...In my server I stored this format value then compare it's working..great thanks