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, á
React converts unicode automatically with the dangerouslySetInnerHTML attribute.
See for more info: https://reactjs.org/docs/dom-elements.html
export default class Hello extends Component { render() { return ( ); } }