본문 바로가기

HTML 기호(HTML Symbols)


HTML entities were described in the previous chapter.

HTML 엔티티는 이전 장에서 설명했습니다.

Many mathematical, technical, and currency symbols, are not present on a normal keyboard.

많은 수학, 기술 및 통화 기호가 일반 키보드에는 없습니다.

To add such symbols to an HTML page, you can use an HTML entity name.

HTML 페이지에 이러한 기호를 추가하려면 HTML 엔티티 이름을 사용할 수 있습니다.

If no entity name exists, you can use an entity number, a decimal, or hexadecimal reference.

엔티티 이름이 없으면 엔티티 번호, 십진수 또는 16 진수 참조를 사용할 수 있습니다.


Example

1
2
3
<p>I will display &euro;</p>
<p>I will display &#8364;</p>
<p>I will display &#x20AC;</p>
cs

Will display as:

1
2
3
I will display €
I will display €
I will display €
cs


Try it Yourself »




Some Mathematical Symbols Supported by HTML

HTML에서 지원되는 일부 수학 기호


Char Number Entity Description
&#8704; &forall; FOR ALL
&#8706; &part; PARTIAL DIFFERENTIAL
&#8707; &exist; THERE EXISTS
&#8709; &empty; EMPTY SETS
&#8711; &nabla; NABLA
&#8712; &isin; ELEMENT OF
&#8713; &notin; NOT AN ELEMENT OF
&#8715; &ni; CONTAINS AS MEMBER
&#8719; &prod; N-ARY PRODUCT
&#8721; &sum; N-ARY SUMMATION


Full Math Reference



Some Greek Letters Supported by HTML

HTML에서 지원하는 그리스 문자


Char Number Entity Description
Α &#913; &Alpha; GREEK CAPITAL LETTER ALPHA
Β &#914; &Beta; GREEK CAPITAL LETTER BETA
Γ &#915; &Gamma; GREEK CAPITAL LETTER GAMMA
Δ &#916; &Delta; GREEK CAPITAL LETTER DELTA
Ε &#917; &Epsilon; GREEK CAPITAL LETTER EPSILON
Ζ &#918; &Zeta; GREEK CAPITAL LETTER ZETA


Full Greek Reference




Some Other Entities Supported by HTML

HTML로 지원되는 다른 엔티티들


Char Number Entity Description
© &#169; &copy; COPYRIGHT SIGN
® &#174; &reg; REGISTERED SIGN
&#8364; &euro; EURO SIGN
&#8482; &trade; TRADEMARK
&#8592; &larr; LEFTWARDS ARROW
&#8593; &uarr; UPWARDS ARROW
&#8594; &rarr; RIGHTWARDS ARROW
&#8595; &darr; DOWNWARDS ARROW
&#9824; &spades; BLACK SPADE SUIT
&#9827; &clubs; BLACK CLUB SUIT
&#9829; &hearts; BLACK HEART SUIT
&#9830; &diams; BLACK DIAMOND SUIT


Full Currency Reference


Full Arrows Reference


Full Symbols Reference




출처 : w3schools.com


반응형