Converte Hexadecimal para string

Útil para burlar protetores de link específicos como o do site: http://www.baixegames.net

by Klawztro

JavaScript

function hex2a(hex) {
    var str = '';
    for (var i = 0; i < hex.length; i += 2)
        str += String.fromCharCode(parseInt(hex.substr(i, 2), 16));
    return str;
}

document.write(hex2a('687474703a2f2f7777772e6d65676175706c6f61642e636f6d2f3f643d38554b3146543731'))