Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Check every symbol solution in Clear category for [old] Number Base by zamberg42
"use strict";
function numberRadix(x, radix){
for (var i=0; i< x.length; i++) {
if (isNaN(parseInt(x[i], radix))) return -1;
}
return parseInt(x, radix);
}
Oct. 21, 2019