How to Add Indian Currency Symbol to TextBlock in a Windows Phone 8 App ?

If you want to display the currency symbols in your Windows Phone 8 App , you can use the Unicode Character Codes.

For example , if you need to display Indian Rupee , you can use the code ₹ . Similarly for the US Dollar , you can use &#x0024

How to Add Indian Currency Symbols to TextBlock in a Windows Phone 8 App ?

Below is a code snippet demonstrating how to use the character code to display the currency symbols dollar and rupee in XAML.

 <TextBlock Text="&#x20b9;" FontSize="128"/>
 <TextBlock Text="&#x0024;" FontSize="128"/>

image

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...