I have a string in unicode that i need to convert. I need to render the string with \\u00f3 to ó. This is an example, it should happen with all other types of characters, á
To put the unicode write in your render()
and jsx, you can just:
{'First \u00b7 Second'}
, or
{'First ' + String.fromCharCode(183) + ' Second'}
If doing this with libraries and other fonts, be sure that your font is imported first, make sure that you are using font-family: myFont
(i.e. "Font Awesome 5 Free"
). And make sure that the unicode that you are using is accurate.