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 - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -