I am working on a windows phone 8 app and need to add a currency hex code to a textblock text property programmatically. It works perfectly on xaml:
<TextBlock Text="₦" />
but when i use the statement below:
textblock.text = "₦";
it just display the text as it is. How can I do this programmatically?