Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
        my $byteLength = length($binaryString);
        return $byteLength;
    }
    
  2. or download this
    string: ®
    unpacked: c2ae
    char length: 2
    byte length: 4
    
  3. or download this
    $test = "\x{05D0}\x{20AC}";
    
  4. or download this
    $test = "\x05\xD0\x20\xAC"
    
  5. or download this
    $test = "\xd7\x90\xe2\x82\xac";