I'm trying to render some Arabic text which is in the form of Unicode.
I have already tried to render this using Text component like
const arabic = "سُبْحَانَ اللهِ وَبِحَمْدِهِ"
render(){
return(
<Text>
{arabic}
</Text>
)
}
it renders the Unicode as it is, but writing it this way
render(){
return(
<Text>
سُبْحَانَ
#1575;للهِ
وَبِحَمْدِ
هِ
</Text>
)
}
renders the correct output

