Javascript String toHex toHex() //Convert string to hexadecimal

Description

Javascript String toHex toHex() //Convert string to hexadecimal


String.prototype.toHex = function toHex() { //Convert string to hexadecimal
    var hex = '';
    for(var i=0;i<this.length;i++) {
        hex += ''+this.charCodeAt(i).toString(16);
    }/* w ww. j  a va 2  s  .  c  om*/
    return hex;
}



PreviousNext

Related