본문 바로가기

프로그래밍/HTML

[HTML] 이스케이프 문자 작성표

by GenieIT* 2024. 11. 19.

728x90
반응형
728x90
반응형

 

1. 왜 html 이스케이프 문자가 필요한가?

  • HTML은 구조화된 마크업 언어이기 때문에 특정 문자가 HTML 태그로 해석될 수 있습니다.
  • 특수 문자를 안전하게 출력하려면 이스케이프 문자가 필요합니다.

 

2. 이스케이프 문자 작성법

  • named Entities (이름 엔티티) : 특정 이름으로 정의된 엔티티를 사용합니다.
  • numeric Entities (숫자 엔티티) : 특정 문자의 유니코드 값을 10진수로 나타냅니다.
  • haxadecimal Entities (16진수 엔티티) : 특정 문자의 유니코드 값을 16진수로 나타냅니다.

 

3. 이스케이프 문자 목록

3-1. 기본 특수 문자

문자 설명 named Entities numeric Entities hex Entities
< Less-than &lt; &#60; &#x3C;
> Greater-than &gt; &#62; &#x3E;
& Ampersand &amp; &#38; &#x26;
" Double quote &quot; &#34; &#x22;
' Single quote &apos; &#39; &#x27;
/ Slash 없음 &#47; &#x2F;

 

3-2. 공백 및 레이아웃

문자 설명 named Entities numeric Entities hex Entities
  Non-breaking space &nbsp; &#160; &#xA0;
En space &ensp; &#8194; &#x2002;
Em space &emsp; &#8195; &#x2003;
Thin space &thinsp; &#8201; &#x2009;
Zero width space 없음 &#8203; &#x200B;

 

3-3. 문장 부호

문자 설명 named Entities numeric Entities hex Entities
© Copyright &copy; &#169; &#xA9;
® Registered &reg; &#174; &#xAE;
Trademark &trade; &#8482; &#x2122;
§ Section sign &sect; &#167; &#xA7;
° Degree &deg; &#176; &#xB0;

 

3-4. 화폐 기호

문자 설명 named Entities numeric Entities hex Entities
$ Dollar 없음 &#36; &#x24;
¢ Cent &cent; &#162; &#xA2;
£ Pound &pound; &#163; &#xA3;
¥ Yen &yen; &#165; &#xA5;
Euro &euro; &#8364; &#x20AC;

 

3-5. 수학 기호

문자 설명 named Entities numeric Entities hex Entities
+ Plus 없음 &#43; &#x2B;
- Minus &minus; &#8722; &#x2212;
× Multiplication &times; &#215; &#xD7;
÷ Division &divide; &#247; &#xF7;
± Plus-minus &plusmn; &#177; &#xB1;
Square root &radic; &#8730; &#x221A;
Infinity &infin; &#8734; &#x221E;
Less than or equal to &le; &#8804; &#x2264;
Greater than or equal to &ge; &#8805; &#x2265;

 

3-6. 화살표 기호

문자 설명 named Entities numeric Entities hex Entities
Left arrow &larr; &#8592; &#x2190;
Up arrow &uarr; &#8593; &#x2191;
Right arrow &rarr; &#8594; &#x2192;
Down arrow &darr; &#8595; &#x2193;
Left-right arrow &harr; &#8596; &#x2194;

 

3-7. 기타 기호

문자 설명 named Entities numeric Entities hex Entities
Spade &spades; &#9824; &#x2660;
Club &clubs; &#9827; &#x2663;
Heart &hearts; &#9829; &#x2665;
Diamond &diams; &#9830; &#x2666;
Bullet &bull; &#8226; &#x2022;
Ellipsis &hellip; &#8230; &#x2026;

 

3-8. 유니코드 문자 포함

문자 설명 numeric Entities hex Entities
😀 Grinning Face &#128512; &#x1F600;
🔥 Fire &#128293; &#x1F525;
Heart &#10084; &#x2764;

 

 

728x90
반응형