이름, 십진수 또는 16진수 코드로 HTML 엔티티를 검색합니다. 개발 참조를 위한 클릭으로 복사.
&Required — always escape bare & in HTML
<Required — prevents tag confusion
>Good practice in attribute values
"Use inside attribute values
Non-breaking space — prevents line breaks
©Copyright symbol in footers
—Em dash for parenthetical statements
…Ellipsis for truncated text
HTML 엔티티는 HTML에서 예약되거나 특수한 문자를 나타내는 데 사용되는 특별한 코드입니다. &로 시작하고 ;로 끝납니다. 예를 들어, &amp;는 &를, &lt;는 <를 나타냅니다.
HTML에서 예약된 문자(< > & ")에는 HTML 엔티티를 사용하세요. 다른 기호에는 Unicode(&#...;)가 더 이식성이 높고 최신 브라우저에서 잘 지원됩니다.
&copy;와 같은 이름이 있는 엔티티는 사람이 읽기 쉽지만, 모든 문자에 이름이 있는 것은 아닙니다. 숫자 엔티티는 모든 Unicode 문자에 작동합니다 — 십진수 (©) 또는 16진수 (©).
&amp;를 사용하여 &를 표시합니다. HTML 속성이나 콘텐츠에서 & 를 그대로 사용하지 마세요——구문 분석 오류가 발생할 수 있습니다.
| 문자 | 엔티티 | 설명 |
|---|---|---|
| & | Ampersand | |
| < | Less-than sign | |
| > | Greater-than sign | |
| " | Quotation mark | |
| ' | Apostrophe | |
| Non-breaking space | ||
| | Soft hyphen | |
| | — | Zero Width Joiner |
| — | Em dash | |
| – | En dash | |
| … | Horizontal ellipsis | |
| « | Left double angle quotation | |
| » | Right double angle quotation | |
| ‘ | Left single quotation mark | |
| ’ | Right single quotation mark | |
| “ | Left double quotation mark | |
| ” | Right double quotation mark | |
| · | Middle dot | |
| • | Bullet | |
| ‣ | — | Triangular bullet |
| © | Copyright sign | |
| ® | Registered sign | |
| ™ | Trade mark sign | |
| ℠ | — | Service mark |
| ° | Degree sign | |
| § | Section sign | |
| ¶ | Pilcrow (paragraph) | |
| † | Dagger | |
| ‡ | Double dagger | |
| ★ | — | Black star |
| ☆ | — | White star |
| ♥ | Black heart suit | |
| ♦ | Black diamond suit | |
| ♠ | Black spade suit | |
| ♣ | Black club suit | |
| ✓ | — | Check mark |
| ✗ | — | Ballot X |
| ∞ | Infinity | |
| ‰ | Per mille sign | |
| + | — | Plus sign |
| − | Minus sign | |
| × | Multiplication sign | |
| ÷ | Division sign | |
| = | — | Equals sign |
| ≠ | Not equal to | |
| ≈ | Almost equal to | |
| ≡ | Identical to | |
| ≤ | Less than or equal to | |
| ≥ | Greater than or equal to | |
| ± | Plus-minus sign | |
| √ | Square root | |
| ∑ | N-ary summation | |
| ∏ | N-ary product | |
| π | Greek small letter pi | |
| ½ | Vulgar fraction one-half | |
| ¼ | Vulgar fraction one-quarter | |
| ¾ | Vulgar fraction three-quarters | |
| ² | Superscript two | |
| ³ | Superscript three | |
| ← | Leftwards arrow | |
| → | Rightwards arrow | |
| ↑ | Upwards arrow | |
| ↓ | Downwards arrow | |
| ↔ | Left right arrow | |
| ↕ | — | Up down arrow |
| ⇐ | Leftwards double arrow | |
| ⇒ | Rightwards double arrow | |
| ⇑ | Upwards double arrow | |
| ⇓ | Downwards double arrow | |
| ⇔ | Left right double arrow | |
| ↩ | — | Leftwards arrow with hook |
| ↪ | — | Rightwards arrow with hook |
| ↺ | — | Anticlockwise open circle arrow |
| ↻ | — | Clockwise open circle arrow |
| $ | — | Dollar sign |
| € | Euro sign | |
| £ | Pound sign | |
| ¥ | Yen sign | |
| ¢ | Cent sign | |
| ₿ | — | Bitcoin sign |
| ₹ | — | Indian rupee sign |
| ₩ | — | Won sign |
| ¤ | Currency sign | |
| À | A with grave | |
| Á | A with acute | |
| Â | A with circumflex | |
| Ã | A with tilde | |
| Ä | A with diaeresis | |
| Å | A with ring above | |
| Æ | AE ligature | |
| Ç | C with cedilla | |
| È | E with grave | |
| É | E with acute | |
| Ñ | N with tilde | |
| Ö | O with diaeresis | |
| Ü | U with diaeresis | |
| ß | Sharp s (eszett) | |
| à | a with grave | |
| á | a with acute | |
| â | a with circumflex | |
| ã | a with tilde | |
| ä | a with diaeresis | |
| å | a with ring above | |
| æ | ae ligature | |
| ç | c with cedilla | |
| è | e with grave | |
| é | e with acute | |
| ñ | n with tilde | |
| ö | o with diaeresis | |
| ü | u with diaeresis | |
| ø | o with stroke (slash) | |
| Ø | O with stroke (slash) |