c# - Add currency symbols to `TextBlock` -


i'm working on windows phone 8 app need show currency symbol in textblock either in xaml or via programmatically. obtain such i've use unicode characters. while using statement

    <textblock text="&#xf01;"/> //i got characters using     <textblock text="&#xf001;"/> //i got square box     //note: &#xf001; or &#xf01; not currency symbol 

so question how add currency symbol $ yen,indian rupee, etc. using xaml or c#, tried lot far not success. answer appreciated.

thanks

actually using wrong format of currency code.
here list of currency code.

correct format use currency symbol is

   <textblock text="&#x20b9;"/> //for indian currency 

still valuable answers, found , working.


Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -