Rupee symbol in mail
I am using P开发者_如何学JAVAHP mailer to send mails to my clients. I need to insert the Rupee symbol in the body of the mails.
How can I do this?
What is said about the Rupee symbol on web sites holds (even more) true for mail clients: It will take some time (years) until versions of the standard fonts with the new symbol has made it to every client machine.
There are workarounds for web pages, but none of them is a good idea to use in E-Mails. I would use the currency code INR
in E-Mails for the time being.
Check this link.Unicode Version 6.0 includes rupee symbol.
What you can do is insert an <img src...>
into the email body pointing to the rupee symbol image. make sure you turn the html headers in the mail on before doing this.
HTML Entity (decimal) code worked for me for ₹
₹
Some HTML and UTF codes are available :
HTML Entity (decimal) - ₹
HTML Entity (hex) - ₹
UTF-8 (hex) - 0xE2 0x82 0xB9 (e282b9)
UTF-8 (binary) - 11100010:10000010:10111001
UTF-16 (hex) - 0x20B9 (20b9)
UTF-16 (decimal) - 8,377
UTF-32 (hex) - 0x000020B9 (20b9)
UTF-32 (decimal) - 8,377
C/C++/Java source code - "\u20B9"
Python source code - u"\u20B9"
How to type in Microsoft Windows - Alt +20B9
Rupee Symbol unicode has not yet released. since we are using some of plugins to display rupee symbols in web pages. Once unicode character is released then it is possible to use that code to display rupee in email as well as web sites.
精彩评论