Help for this page

Select Code to Download


  1. or download this
    dd "UNSIGNED OCTETS(C*) ", unpack "C0C*", $unicode_string.$unicode_str
    +ing;
    dd "UNSIGNED OCTETS(C*) ", unpack "U0C*", $unicode_string.$unicode_str
    +ing;
    __END__
    ("UNSIGNED OCTETS(C*) ", 12354, 12354)
    ("UNSIGNED OCTETS(C*) ", 227, 129, 130, 227, 129, 130)
    
  2. or download this
    @bytes = unpack("U0C*", $Unicode_string);
    
  3. or download this
    
        $code_point=0x3042;#HIRAGANA LETTER A
    ...
        print join('|', @bytes), "\n";
    __END__
    E3|81|82