Fuzzes for characters that are treated as decimal separators in either parseFloat or the Number constructor.
const c = String.fromCodePoint(i);0x0D
if (parseFloat("13"+c+"37") === 13.37 || Number("13"+c+"37") === 13.37) log(i);const c = String.fromCodePoint(i);0x0D
if (parseFloat("13"+c+"37") === 13.37 || Number("13"+c+"37") === 13.37) alert(i);