Help for this page

Select Code to Download


  1. or download this
    use utf8;
    use encoding 'utf8';
    
    my $out = &refPrint(\%rows);
    
  2. or download this
    Now, it dies with an error, that encoding is deprecated
    
  3. or download this
    use utf8;
    
    my $out = &refPrint(\%rows);
    
  4. or download this
    <table border='1'><tr><td style='vertical-align: top; '>6</td><td><tab
    +le border='1'><tr><td style='vertical-align: top; '>table_name</td><t
    +d>reshenia</td></tr>
    <tr><td style='vertical-align: top; '>description</td><td>&#1056;&#107
    +7;&#1096;&#1077;&#1085;&#1080;&#1103;</td></tr>
    ...
    <tr><td style='vertical-align: top; '>4</td><td><table border='1'><tr>
    +<td style='vertical-align: top; '>description</td><td>&#1047;&#1072;&
    +#1087;&#1088;&#1086;&#1089;&#1099;</td></tr>
    <tr><td style='vertical-align: top; '>table_name</td><td>zaprosy</td><
    +/tr>
    </table>
    
  5. or download this
    <html><head>
        <meta charset="utf-8">
    ...
    </tbody></table></td></tr>
    </tbody></table>
    </body></html>
    
  6. or download this
    use utf8;
    use Encode;
    
    my $out = decode('UTF-8', &refPrint(\%rows));