Help for this page

Select Code to Download


  1. or download this
    use Encode;
    ...
    my $utf8_string = decode( 'utf8', $field_value_from_db );
    
  2. or download this
    my $field_value_for_db = encode( 'iso-8859-1', $utf8_string );