Sunday, December 22, 2013

How to Use Character Entities in CSS, HTML and JavaScript

How to Use Character Entities in CSS, HTML and JavaScript

How to Use Character Entities in CSS, HTML and JavaScript
Sunday, December 22, 2013
How to Use Character Entities in CSS, HTML and JavaScript - Hallo TRENDING NEWS, In the article that you are reading this time with the title How to Use Character Entities in CSS, HTML and JavaScript, we have prepared this article well for you to read and take the information in it. hopefully the contents of the post Article css, Article how to, Article javascript, what we write you can understand. all right, have a nice reading.

Title : How to Use Character Entities in CSS, HTML and JavaScript
link : How to Use Character Entities in CSS, HTML and JavaScript

Related Post


How to Use Character Entities in CSS, HTML and JavaScript

Sometimes, when using scripts, we must write special characters like accents by using a special set of codes called character entities. However, these don't always look good or we get a question mark or other strange symbols. Usually, this is solved if the character encoding is done right but the logic may not always work.

In Blogger, special characters most of the time appear correctly, but when it is about other services, like external files, things can get complicated.

For example, this usually looks good and when you click on this link, you should see the letters in the right way:
alert(" á é í ó ú  ☺ ✛ ❤ ");
If we are trying to use other method and we want to use this type of characters, sometimes we need to write them in a special format called escape sequence which is nothing but a backslash followed by a letter and a number in hexadecimal format. In the case of common characters or accents, it would be \x followed by two hex digits:
\xe1 is the letter á
\xe9 is the letter é
\xed is the letter í
\xf3 is the letter ó
\xfa is the letter ú
Other combinations generate special characters:
\n is a line break
\t is the tab character
\' is single quote
\" is double quote
\\ is a back slash
Or we can use \u followed by the Unicode character code expressed as four hexadecimal digits:
\u00e1 is the letter á
\u00e9 is the letter é
\u00ed is the letter í
\u00f3 is the letter ó
\u00fa is the letter ú
This will allow us to see correctly what we couldn't before if we were using some other services:
alert(" \u263a \u2764 \u271b ");
On this page you can find a comprehensive list of all the characters, both symbols and different alphabets.

Although rare characters are not often used in the CSS, there is a case when they are necessary as well, like when using the content property with the :after and :before pseudo-elements.

The same criteria applies there, but we only need to add a backslash followed by the four-digit hexadecimal code. For example:
content: ":\24d1\24d4\24d5\24de\24e1\24d4";

content: ":after  \263a  \2724  \2602";
:ⓑⓔⓕⓞⓡⓔ
:after ☺ ✤ ☂

Remember that IE doesn't understand the :before pseudoclass with content, and you would have to set the list-style-type property as none, or you would get 2 bullets in CSS compliant browsers.


Thus the article How to Use Character Entities in CSS, HTML and JavaScript

That's the article How to Use Character Entities in CSS, HTML and JavaScript this time, hopefully it can be of benefit to all of you. well, see you in another article post.

You are now reading the article How to Use Character Entities in CSS, HTML and JavaScript with the link address https://poccoll.blogspot.com/2013/12/how-to-use-character-entities-in-css.html
How to Use Character Entities in CSS, HTML and JavaScript
4/ 5
Oleh

No comments: