아이콘 유니코드

dev_log·2022년 8월 29일
0

1. HTML Entity란?

An HTML entity is a piece of text ("string") that begins with an ampersand (&) and ends with a semicolon (;) .
HTML Entity란 &로 시작해서 ;으로 끝나는 문자열이다.
키보드로 치기 어려운 기호나 문자를 표기할 때 사용한다.
예를 들어 ©와 같은 카피라이트 상징기호는 코드로 ©로 표현한다.

2. Syntax:

  1. Using a Character Entity

&엔티티이름;
(예시) © : ©

  1. Using Number

&#엔티티넘버;
(예시)© : ©


references

https://www.educba.com/html-entities/

https://www.w3.org/MarkUp/html-spec/html-spec_13.html

https://www.w3schools.com/html/html_entities.asp

0개의 댓글