HTML Entities

HTML 언어는 미리 정해진 기호를 사용해 문서의 틀을 제작합니다. 예를 들어 <a> 는 하이퍼링크 태그이며, 이런 태그(tag)를 사용할 때 < 와 >를 사용합니다. 이런 약속 때문에, HTML 문서에서는 해당 특수문자를 태그 이외에 사용할 경우에는 HTML Entities 항목에서 사용하는 편이 브라우저의 오해를 방지할 수 있습니다.

아래는 이와 같은 HTML Entities 중에서 자주 쓰이는 항목을 나타낸 표입니다. 제가 직접 사용하면서 나중에도 계속 찾을 것 같은 항목만 추려봤습니다.

CharacterEntity NameEntity NumberDescription
&&amp;&#38;Ampersand
<&lt;&#60;Less than
>&gt;&#62;Greater than
"&quot;&#34;Quotation mark
'&apos;&#39;Apostrophe
&nbsp;&#160;Non-breaking space
¢&cent;&#162;Cent
&euro;&#8364;Euro
£&pound;&#163;Pound
¥&yen;&#165;Yen
©&copy;&#169;Copyright
®&reg;&#174;Trademark
/&#47;Slash
:&#58;Colon
;&#59;Semicolon
?&#63;Question mark
(&#40;Opening parenthesis
)&#41;Closing parenthesis
[&#91;Opening square bracket
]&#93;Closing square bracket
{&#123;Opening curly brace
}&#125;Closing curly brace
||&#124;Vertical bar, Pipe
@&#64;At symbol
+&#43;Plus
-&#45;Hyphen
±&#177;Plus-minus
××&#215;Multiplication
÷÷&#247;Division
`&#96;Backtick
&#8216;Left single quotation mark
&#8217;Right single quotation mark
,&#44;Comma
.&#46;Period
^&#94;Caret
§§&#167;Section
¿¿&#191;Inverted question mark
°°&#176;Degree
&#8482;Trademark
&#8800;Not equal to
--&#8211;En dash
---&#8212;Em dash
Buy Me a Coffee at ko-fi.com

© 2024 ahoxy. All rights reserved.