Help for this page

Select Code to Download


  1. or download this
    use Encode "encode";
    
    sub U2Entity {
        return '&#x'.unpack("H*", encode("ucs2be", shift)).';';
    }
    
  2. or download this
    sub Any2Hex {
        return unpack("H*", shift);
    }