$(document).ready(function(){
  if (!($(".encrypted").html() == null)) {
    $(".encrypted").html(rot47($(".encrypted").html()));
  }
 });


function rot47(data) {
  var res = "";
  for(var i = 0; i < data.length; i++) {
      var ch = data.charCodeAt(i);
      res += String.fromCharCode(((ch - 33) + 47) % 94 + 33);
  }
  return res;
}

