Is it possible to make unicode characters work within react-intl json dictionaries? For example in en.json
My custom &supTM application
displays "&supTM" instead of TM
Is it possible to make unicode characters work within react-intl json dictionaries? For example in en.json
My custom &supTM application
displays "&supTM" instead of TM
You can use unicode character \u2122
. So it'd be like this in your json file
{
"MESSAGE": "My custom \u2122 application"
}