HTML 엔티티 인코딩
아래에 HTML 또는 텍스트를 붙여넣고 인코딩을 클릭하면 특수 문자가 HTML 엔티티로 이스케이프됩니다. 모든 처리는 브라우저에서 로컬로 수행됩니다.
복사됨!
What is HTML Entity Encoding?
HTML entity encoding converts special characters into their HTML entity equivalents to prevent them from being interpreted as HTML markup. For example:
<→<>→>&→&"→"'→'
This prevents XSS attacks and ensures text displays correctly in HTML documents.