Looking to solve a similar issue discussed on this Stack Overflow thread, which explores how to print an array of HTML entities as unicode.
My specific problem involves working with an array of custom font HTML entities:
const arr = ['crop_16_9', 'computer', '3d_rotation', ''];
I've managed to successfully display 
using the following code snippet:
render() {
return <span> String.fromCodePoint(parseInt(arr[0].replace(/&#x|;/g,''),16)) </span>
}
However, I encounter errors when trying to apply this method to the other elements in the array:
The error messages state that "parseInt is NaN" and "SOME_NUMBER_HERE is out of range for String.fromCodePoint."
Is there a solution to correctly convert all the HTML entities to Unicode using String.fromCodePoint and parseInt?