Help for this page

Select Code to Download


  1. or download this
    { "hex_code":"\\xa5" }
    
  2. or download this
    \xa5
    
  3. or download this
    //https://stackoverflow.com/questions/4209104/decoding-hex-string-in-j
    +avascript
    String.prototype.decodeEscapeSequence = function() {
    ...
            return String.fromCharCode(parseInt(arguments[1], 16));
        });
    };
    
  4. or download this
    sub unescape {
        my( $str ) = @_;
        $str =~ s!\\x\{([0-9a-f]{4})\}!chr(hex $1)!ge;
        $str
    };
    
  5. or download this
    var hex_code = '\xa5';