Welcome To My Blog

This blog contains posts that may benefit ordinary visitors or programmers (particularly .NET programmer).
To view posts related to particular subjects, click the link under Labels.

Thursday, June 27, 2013

Using Unicode in HTML blog

Hi,

Ever wonder how to display Unicode characters on your HTML page?  What are Unicode characters?  Unicode characters are special characters such as the copyright symbol (©), trademark symbol (™) and many others that you normally don't see on the keyboard.

Sometimes you may need to show that characters on your page to make people understand better about your post.

In order to show the Unicode character, you can use the following characters sequence &#x  followed by a hex number that represents the Unicode character and end with the semicolon symbol (;).  For example, to display the ₤ (British pound sterling currency symbol), enter the following code ₤  in your HTML page.

For further info regarding Unicode characters, visit the following site: http://www.unicodetables.com/

Happy coding... :-)

No comments: