XML Escape Unescape Tool은 브라우저에서 번역되지 않은 XML을 직접 출력하려는 경우 XML을 문자열로 이스케이프하고 Unescape하는 데 도움이 됩니다.
XML을 이스케이프/이스케이프 해제하는 방법?
- XML 데이터를 이스케이프/이스케이프 해제하려면 XML 데이터를 추가/복사하여 입력에 붙여넣습니다.
- 버튼을 클릭하여 URL에서 XML을 데이터를 로드하거나 버튼을 클릭하여 컴퓨터에서 XML 데이터를 로드할 수도 있습니다.
- 데이터를 처리하려면 'Escape' 또는 'Unescape' 버튼을 클릭하십시오.
- 변환이 완료되면 버튼을 클릭하여 파일을 다운로드할 수 있습니다.
입력 데이터
<?xml version="1.0" encoding="UTF-8" ?>
<root>
<array>1</array>
<array>2</array>
<array>3</array>
<boolean>true</boolean>
<color>#82b92c</color>
<null/>
<number>123</number>
<object>
<a>b</a>
<c>d</c>
<e>f</e>
</object>
<string>Hello World</string>
</root>
탈출 후
<?xml version="1.0" encoding="UTF-8" ?>
<root>
<array>1</array>
<array>2</array>
<array>3</array>
<boolean>true</boolean>
<color>#82b92c</color>
<null/>
<number>123</number>
<object>
<a>b</a>
<c>d</c>
<e>f</e>
</object>
<string>Hello World</string>
</root>