JSFiddle - React, Tailwind, and code Playground

by benhowdle89

JavaScript

e = '';
a = [54, 40, 2, 2, 210, 2, 54];
while (b = a.pop()) {
    r = 0;
    c = ('63' + b).split('');
    while (d = c.pop()) {
        r += Math.pow(2, d)
    }
    e += String.fromCharCode(r)
}
alert(e);