refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조
에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게 [공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류. 문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인). - Topic_Programming → Domain_Programming (내부 구조 보존) - Topic_Graphic → Domain_Design - Topic_Business → Domain_Product - Topic_General → Domain_General - _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning), Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing) - 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서) - 빈 폴더 정리 (memory/procedures) - 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,146 @@
|
||||
---
|
||||
id: html-emojis
|
||||
title: "HTML Emojis"
|
||||
category: "Frontend"
|
||||
status: "draft"
|
||||
verification_status: "conceptual"
|
||||
canonical_id: ""
|
||||
aliases: ["HTML emoji", "emojis in HTML", "Unicode emojis", "UTF-8 emojis", "emoji characters", "emoji entity numbers"]
|
||||
duplicate_of: ""
|
||||
source_trust_level: "B"
|
||||
confidence_score: 0.89
|
||||
created_at: 2026-06-23
|
||||
updated_at: 2026-06-23
|
||||
review_reason: ""
|
||||
merge_history: []
|
||||
tags: ["html", "web", "frontend", "emojis", "unicode", "utf-8", "w3schools"]
|
||||
raw_sources: ["https://www.w3schools.com/html/html_emojis.asp"]
|
||||
applied_in: []
|
||||
github_commit: ""
|
||||
---
|
||||
|
||||
# [[HTML Emojis]]
|
||||
|
||||
## 🎯 한 줄 통찰 (One-line insight)
|
||||
Emojis look like images but are actually **letters (characters) from the UTF-8 (Unicode) character set**, so they can be copied, displayed, and sized just like any other HTML character. [S1]
|
||||
|
||||
## 🧠 핵심 개념 (Core concepts)
|
||||
- **Emojis are characters, not images** — they are letters from the UTF-8 (Unicode) character set, which is why they behave like ordinary text. [S1]
|
||||
- **Charset must be declared** — to display a page correctly the browser must know its character set, declared with `<meta charset="UTF-8">`. If not specified, UTF-8 is the default in HTML. [S1]
|
||||
- **Entity numbers** — each emoji has a numeric reference (e.g. `😀` for 😀), exactly like other character entities. [S1]
|
||||
- **Styleable like text** — because emojis are characters, they can be copied, displayed, and sized (e.g. via `font-size`) just like any other character. [S1]
|
||||
|
||||
## 🧩 추출된 패턴 (Extracted patterns)
|
||||
- **Charset declaration pattern** — `<meta charset="UTF-8">` in the document head. [S1]
|
||||
- **Numeric character pattern** — `&#NNN;` renders a Unicode character; e.g. `A` → A, `😀` → 😀. [S1]
|
||||
- **Sizing pattern** — wrap emojis in a styled element, e.g. `<p style="font-size:48px">😀</p>`. [S1]
|
||||
|
||||
## 📖 세부 내용 (Details)
|
||||
**What are Emojis?**
|
||||
Emojis look like images, but they are not. Emojis are letters (characters) from the UTF-8 (Unicode) character set. Examples shown include 😄 😍 💗. [S1]
|
||||
|
||||
**The HTML charset Attribute**
|
||||
To display an HTML page correctly, a web browser must know the character set used in the page. This is specified in the `<meta>` tag: `<meta charset="UTF-8">`. If not specified, UTF-8 is the default character set in HTML. [S1]
|
||||
|
||||
**UTF-8 Characters**
|
||||
Because letters are UTF-8 characters, they can be displayed by their entity numbers. The characters A, B, and C are displayed by the numbers 65, 66, and 67: [S1]
|
||||
```html
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="UTF-8">
|
||||
<body>
|
||||
|
||||
<p>I will display A B C</p>
|
||||
<p>I will display A B C</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
The `<meta charset="UTF-8">` element defines the character set. [S1]
|
||||
|
||||
**Emoji Characters**
|
||||
Emojis are also characters from the UTF-8 alphabet and can be referenced by their entity number. A basic emoji display: [S1]
|
||||
```html
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="UTF-8">
|
||||
<body>
|
||||
|
||||
<h1>My First Emoji</h1>
|
||||
|
||||
<p>😀</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
|
||||
Since emojis are characters, they can be copied, displayed, and sized just like any other character in HTML — here using `font-size`: [S1]
|
||||
```html
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="UTF-8">
|
||||
<body>
|
||||
|
||||
<h1>Sized Emojis</h1>
|
||||
|
||||
<p style="font-size:48px">
|
||||
😀 😄 😍 💗
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
|
||||
**Emoji reference values (sample)** [S1]
|
||||
|
||||
| Emoji | Value |
|
||||
|---|---|
|
||||
| 🗻 | `🗻` |
|
||||
| 🗼 | `🗼` |
|
||||
| 🗽 | `🗽` |
|
||||
| 🗾 | `🗾` |
|
||||
| 🗿 | `🗿` |
|
||||
| 😀 | `😀` |
|
||||
| 😁 | `😁` |
|
||||
| 😂 | `😂` |
|
||||
| 😃 | `😃` |
|
||||
| 😄 | `😄` |
|
||||
| 😅 | `😅` |
|
||||
|
||||
**HTML Emoji Examples**
|
||||
The page lists emoji categories with sample characters, including Smileys (😀 😂 😊 😎 😜), Hands (✌ ✊ ☝ ✋ 👌), and further categories: People, Office, Places, Transport, Animals, Food, Plants, Fruits, Sports, Earth & Sky, Weather, Clothing, Audio/Video, Celebration, Entertainment, and Symbols. [S1]
|
||||
|
||||
## 🛠️ 적용 사례 (Applied in summary)
|
||||
The "My First Emoji" and "Sized Emojis" examples above are the canonical applied cases: rendering an emoji by entity number and scaling it with CSS `font-size`. No external project/commit applications found in the source.
|
||||
|
||||
## 💻 코드 패턴 (Code patterns)
|
||||
Display an emoji by entity number (HTML):
|
||||
```html
|
||||
<meta charset="UTF-8">
|
||||
<p>😀</p>
|
||||
```
|
||||
Size emojis like text (HTML):
|
||||
```html
|
||||
<p style="font-size:48px">😀 😄 😍 💗</p>
|
||||
```
|
||||
|
||||
## ⚖️ 모순 및 업데이트 (Contradictions & updates)
|
||||
No contradictions found in the source. [S1]
|
||||
|
||||
## ✅ 검증 상태 및 신뢰도
|
||||
- **상태:** draft
|
||||
- **검증 단계:** conceptual (실제 적용 사례 발견 시 applied/validated로 승격 가능)
|
||||
- **출처 신뢰도:** B (W3Schools — widely used educational reference, not a primary standards body)
|
||||
- **신뢰 점수:** 0.89
|
||||
- **중복 검사 결과:** 신규 생성 (New discovery)
|
||||
|
||||
## 🔗 지식 그래프 (Knowledge Graph)
|
||||
- **상위/루트:** [[HTML Tutorial]]
|
||||
- **관련 개념:** [[HTML Symbols]], [[HTML Charsets]], [[HTML Entities]], [[HTML URL Encode]]
|
||||
- **참조 맥락:** Referenced when adding emoji or Unicode characters to a page, which depends on declaring the UTF-8 character set.
|
||||
|
||||
## 📚 출처 (Sources)
|
||||
- [S1] W3Schools — HTML Emojis — https://www.w3schools.com/html/html_emojis.asp
|
||||
|
||||
## 📝 변경 이력 (Change history)
|
||||
- 2026-06-23: Initial draft synthesized from the W3Schools "HTML Emojis" page (Astra wiki-curation, P-Reinforce v3.1 format).
|
||||
Reference in New Issue
Block a user