The String fromCharCode() static method returns a string created from the specified sequence of UTF-16 code units.

    
    const textFromCharCode = String.fromCharCode(72, 69, 76, 76, 79);
    console.log(textFromCharCode);
    // "HELLO"

    const stringFromCharCode = String.fromCharCode(189, 43, 190, 61);
    console.log(stringFromCharCode);
    // "½+¾="