vote up 0 vote down star

What are escape tags in html?

are they &#34; &#60; &#62; to represent ", <, > And how do these work? Is that hex, or what is it. How is it made, and why aren't they just the characters themselves?

flag

4 Answers

vote up 0 vote down

No, it's not hex, it's decimal. Hex equivalent is &#x3c; But one usually uses &lt; (less-than) for < and &gt; for > instead.

link|flag
vote up 0 vote down

Those escapes are decimal ascii escapes. You can see the values here. Take a look at the HTML column.

link|flag
vote up 2 vote down

Here are some common entities. You do not need to use the full code - there are common aliases for frequently used entities. For example, you can use < and > to indicate less than and greater than symbols. & is ampersand, etc.

EDIT: That should be - &lt; &gt; and &amp;

link|flag
vote up 2 vote down

How do these work?

Anything &#num; is replaced with character from ASCII table matching that number.

Is that hex, or what is it?

It's not hex, the number represents characters number in decimal in ASCII table. Check out ASCII table. Check Dec and Html columns.

Why aren't they just the characters themselves?

Look at this example:

<div>Hey you can use </div> to end div tag!</div>

It would mess up the interpreter. It's a bad example, but you got the idea.

Why you can't use escape characters like in programming languages?

I don't have exact answer to that. But html same as xml is a markup language and not programming language and answer probably lies within history of how markup languages become what they are now.

link|flag
I think he means, why don't you just use \< to escape <, as in strings in many programming languages? – strager Mar 28 at 3:36
You're probably right, I misread the first line. – Maiku Mori Mar 28 at 3:40
NAh, I was just meaning why I couldn't use say < instead of the ascii. But I your example really explains. it. I guess it would confuse the browser. Thanks guys :D – Chris Mar 28 at 3:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.