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 €</p> <p>I will display €</p> <p>I will display €</p> | cs |
Will display as:
1 2 3 | I will display € I will display € I will display € | cs |
Some Mathematical Symbols Supported by HTML
HTML에서 지원되는 일부 수학 기호
Char | Number | Entity | Description |
∀ | ∀ | ∀ | FOR ALL |
∂ | ∂ | ∂ | PARTIAL DIFFERENTIAL |
∃ | ∃ | ∃ | THERE EXISTS |
∅ | ∅ | ∅ | EMPTY SETS |
∇ | ∇ | ∇ | NABLA |
∈ | ∈ | ∈ | ELEMENT OF |
∉ | ∉ | ∉ | NOT AN ELEMENT OF |
∋ | ∋ | ∋ | CONTAINS AS MEMBER |
∏ | ∏ | ∏ | N-ARY PRODUCT |
∑ | ∑ | ∑ | N-ARY SUMMATION |
Full Math Reference
Some Greek Letters Supported by HTML
HTML에서 지원하는 그리스 문자
Char | Number | Entity | Description |
Α | Α | Α | GREEK CAPITAL LETTER ALPHA |
Β | Β | Β | GREEK CAPITAL LETTER BETA |
Γ | Γ | Γ | GREEK CAPITAL LETTER GAMMA |
Δ | Δ | Δ | GREEK CAPITAL LETTER DELTA |
Ε | Ε | Ε | GREEK CAPITAL LETTER EPSILON |
Ζ | Ζ | Ζ | GREEK CAPITAL LETTER ZETA |
Full Greek Reference
Some Other Entities Supported by HTML
HTML로 지원되는 다른 엔티티들
Char | Number | Entity | Description |
© | © | © | COPYRIGHT SIGN |
® | ® | ® | REGISTERED SIGN |
€ | € | € | EURO SIGN |
™ | ™ | ™ | TRADEMARK |
← | ← | ← | LEFTWARDS ARROW |
↑ | ↑ | ↑ | UPWARDS ARROW |
→ | → | → | RIGHTWARDS ARROW |
↓ | ↓ | ↓ | DOWNWARDS ARROW |
♠ | ♠ | ♠ | BLACK SPADE SUIT |
♣ | ♣ | ♣ | BLACK CLUB SUIT |
♥ | ♥ | ♥ | BLACK HEART SUIT |
♦ | ♦ | ♦ | BLACK DIAMOND SUIT |
Full Currency Reference
Full Arrows Reference
Full Symbols Reference
출처 : w3schools.com
반응형
'HTML' 카테고리의 다른 글
[R]HTML Uniform Resource Locators (1) | 2018.06.30 |
---|---|
HTML 인코딩 (문자 집합)|(HTML Encoding (Character Sets)) (0) | 2018.06.29 |
HTML 개체(HTML Entities) (0) | 2018.06.27 |
HTML 컴퓨터 코드 요소(HTML Computer Code Elements) (0) | 2018.06.26 |
HTML 반응 형 웹 디자인(HTML Responsive Web Design) (1) | 2018.06.25 |