Help for this page

Select Code to Download


  1. or download this
    use Devel::Peek qw( Dump );
    Dump($db_field);  # Output sent to STDERR
    
  2. or download this
    259: PV = 0x18e914c "\304\203"\0 [UTF8 "\x{103}"]
    238: PV = 0x18e914c "\356"\0
    ...
    
    259: PV = 0x18d74dc "\304\203"\0     <- Lack of [UTF8 ...]
    238: PV = 0x18d74dc "\356"\0
    
  3. or download this
    259: PV = 0x18e914c "\304\203"\0 [UTF8 "\x{103}"]
    238: PV = 0x18e914c "\356"\0
    
  4. or download this
    259: PV = 0x18e914c "\304\203"\0 [UTF8 "\x{103}"]
    238: PV = 0x18ecffc "\303\256"\0 [UTF8 "\x{ee}"]
    
  5. or download this
    use Encode qw( encode );
    print(encode('UTF-8', $text));
    
  6. or download this
    binmode(STDOUT, ':encoding(UTF-8)');
    print($text);
    
  7. or download this
    259: PV = 0x18d73fc "?"\0
    238: PV = 0x18d7444 "\356"\0
    
  8. or download this
    259: PV = 0x18d736c "\304\203"\0
    238: PV = 0x18ecffc "\303\256"\0
    
  9. or download this
    259: PV = 0x18d74dc "\304\203"\0     <- Lack of [UTF8 ...]
    238: PV = 0x18d74dc "\356"\0