Search code examples
androidtextviewsymbols

How can I use the new Rupee Symbol in TextView for Android?


How can I display the new Rupee (Indian) symbol in TextView?


Solution

  • you can use

    <string name="Rs">\u20B9</string>  
    

    \u20B9 is 'Rupee Symbol'

    or

    <string name="rs">\u20A8</string> 
    

    \u20A8 is 'Rs'