whatisthis?

html. HTML 특수문자 코드표 본문

WEB STUDY/HTML,CSS

html. HTML 특수문자 코드표

thisisyjin 2022. 2. 4. 13:03

 

- HTML에서는 특정 문자들이 예약되어있기 때문에 표기의 혼란을 막기 위해

특수문자를 숫자표현 or 문자표현으로 작성한다.

 

 

 

예를 들면, 공백을 &nbsp로 쓰거나, <와 >을 가각 &lt, &gt처럼 쓴다.

(그냥 막 갖다붙인게 아니고, lt = less than과 같이 의미가 다 있다.)

 

 

특수문자
숫자표현
문자표현
설명
space &%09
&%10
&%32
  수평탭
줄삽입
여백
  &#160; &nbsp; space
(non-breaking space)
< &#60; &lt; less than
> &#62; &gt; greater than
& &#38; &amp; ampersand
' &#39; &apos; (IE에서 안됨) apostrophe
" &#34; &quot; quotation mark
&#8216; &lsquo; left single quotation mark
&#8217; &rsquo; right single quotation mark
&#8220; &ldquo; left double quotation mark
&#8221; &rdquo; right double quotation mark
° &#176; &deg; degree
· &#183; &middot; middle dot
× &#215; &times; multiplication
÷ &#247; &divide; division
? &#8722; &minus; minus
&#8734; &infin; infinity
&#8764; &sim; simular to
&#8800; &ne; not equal
&#8804; &le; less or equal
&#8805; &ge; greater or equal
? &#8211; &ndash; en dash
? &#8212; &mdash; em dash
? &#8226; &bull; bullet
&#8230; &hellip; horizontal ellipsis
&#8242; &prime; minutes
&#8243; &Prime; seconds
? &#169; &copy; copyright
? &#174; &reg; registered trademark
&#8482; &trade; trademark

&#169; &copy; 저작권

 

- html에서는 두칸 이상의 띄어쓰기도 하나로 인식하기 때문에

여러개의 띄어쓰기가 필요할 때는

&nbsp;를 이용해야한다.

<div> &nbsp;&nbsp;&nbsp; 여러줄 &nbsp;&nbsp;&nbsp; 띄어쓰기 &nbsp;&nbsp;&nbsp; </div>

 

만약, &nbsp라는 문자 그대로를 출력하려면?

>> 그냥 &nbsp;를 쓰면 스페이스가 반환되므로

&글자를 &amp;로 바꾸어 쓴다.

 

<div>&amp;nbsp;</div>

 

 

 


ref.

 

 

Entity - MDN Web Docs Glossary: Definitions of Web-related terms | MDN

An HTML entity is a piece of text ("string") that begins with an ampersand (&) and ends with a semicolon (;) . Entities are frequently used to display reserved characters (which would otherwise be interpreted as HTML code), and invisible characters (

developer.mozilla.org

 

HTML Standard

HTMLLiving Standard — Last Updated 3 February 2022 ← 13.2 Parsing HTML documents — Table of Contents — 14 The XML syntax → 13.5 Named character references 13.5 Named character references This table lists the character reference names that are sup

html.spec.whatwg.org

 

(HTML&DOM) HTML 엔티티(entity) - 이스케이프(escape), 이스케이핑(escaping)

안녕하세요. 이번 시간에는 HTML 엔티티에 대해서 알아보겠습니다! 혹시 HTML 소스를 보다가  나 < 또는 >를 보신 적이 있나요? 이 문자들은 HTML 파일이 깨져서 나타나는 문자가 아닙니다.

www.zerocho.com