웹코딩/html

html 특수문자표 출력 &nbsp, &amp

quantumcode 2022. 1. 28. 17:55
728x90

 

html 특수문자표 출력 

html 문서에 마크업 작업 시 띄어쓰기를 사용할 때 스페이스바를 사용하는 경우가 있는데 아래 와 같이 한번 띄어쓰기의 경우 정상 작동하지만 두번 이상 띄어쓰기를 할 경우 나머지 공백은 삭제 됩니다. 

<p>html 띄어쓰기 확인하기</p>

출력 :  

html 띄어쓰기 확인하기

 

<p>html 띄어쓰기      확인하기</p>

출력 : 

html 띄어쓰기 확인하기

 

 

두번 이상 띄어쓰기를 할 경우 html 특수문자 사용해야합니다. 

<p>html 띄어쓰기&nbsp;&nbsp;확인하기</p>

출력 :

html 띄어쓰기  확인하기

 

이 외에 다양한  html 특수문자에 대하여 알아 봅시다.

&(ampersand)

&amp;

!(exclamation)

&excl;

#(number sign)

&num;

(copyright sign)

&copy;

 

아래 주소에서 특수 문자 테스트를 테스트 해볼 수 있습니다.

https://wizard99v.cafe24.com/htmlcharref/index.html

 

html charactor reference

 

wizard99v.cafe24.com

다양한 특수문자를 확인 하고 싶다면 아래  w3c 공식 사이트 에서 확인 할 수 있습니다.

https://dev.w3.org/html5/html-author/charref

 

Character Entity Reference Chart

 

dev.w3.org

 

html 특수문자 변환 사이트

https://wizard99v.cafe24.com/htmlcharref/index.html

https://wizard99v.cafe24.com/htmlcharref/index.html

'웹코딩 > html' 카테고리의 다른 글

dir=ltr, dir=rtl  (0) 2022.01.30
mata tag view port  (0) 2022.01.29
samantic tag (시멘틱 태그)  (0) 2022.01.21
select box 속성 placeholder 처럼 사용  (0) 2022.01.21