In strings.xml
file I have the following entry -
<string name="Rs">\u20B9</string>
Now in my activity_main.xml
file when I have the entry -
android:text="@string/Rs"
the output on device is correctly shown as "₹"
But when I have the entry -
android:text="Pizza @string/Rs 350"
the output on my device is incorrectly shown as "Pizza @string/Rs 350"
How to correct this?