Search Tools Data

Thứ Bảy, 22 tháng 7, 2017

Giải mã ký tự đặc biệt

Giải mã ký tự đặc biệt

<link rel="stylesheet" href="//rawgit.com/phuongcantho/Data/master/css-file/tools.css" media="screen,print" />
<script src="//rawgit.com/phuongcantho/Data/master/js-file/jquery-1.8.3.js"></script>
<script src="//rawgit.com/phuongcantho/Data/master/js-file/strictly.js"></script>
<script src="//rawgit.com/phuongcantho/Data/master/js-file/encoder.js"></script>
<script>
function HTMLEncode(){var i=G('txtInput').value,db=G('chkDouble').checked;G('txtEncoded').value=Encoder.htmlEncode(i,db);}
function HTMLDecode(){var i=G('txtEncoded').value;G('txtDecoded').value=Encoder.htmlDecode(i);}
A(function(){
G('txtInput').value=unescape(en);var db=G('chkDouble').checked;
G('txtEncoded').value=Encoder.htmlEncode(unescape(en),db);
G('txtDecoded').value=Encoder.htmlDecode(G('txtEncoded').value);
})
</script>
<section id="pageBody">
<div class="block">
<form id="frmEncoder" name="frmEncoder" action="#">
<fieldset>
<dl class="entities">
<dt><label for="txtInput">Nhập text của bạn vào ô bên dưới và click &quot;Mã hóa&quot; để đổi mã ký tự.<br />
<em>VD: &amp; &#8594; &amp;amp;</em></label></dt>
<dd>
<p><textarea id="txtInput" name="txtInput" cols="50" rows="5"></textarea></p>
<p><input type="checkbox" id="chkDouble" name="chkDouble" checked="checked" disabled="disabled" style="display: none;" /></p>
<p class="btnEntities"><input type="button" id="cmdEncode" name="cmdEncode" value="Mã hóa" onclick="HTMLEncode();" /></p>
</dd>
<dt><label for="txtEncoded">Mã ký tự đã được chuyển, click &quot;Giải mã&quot; để chuyển lại dạng text ban đầu.<br />
<em>VD: &amp;amp; &#8594; &amp;</em></label></dt>
<dd>
<p><textarea id="txtEncoded" name="txtEncoded" cols="50" rows="5"></textarea></p>
<p class="btnEntities"><input type="button" id="cmdDecode" name="cmdDecode" value="Giải mã" onclick="HTMLDecode();" /></p>
</dd>
<dt><label for="txtDecoded">Trả về dạng ký tự đặc biệt ban đầu</label></dt>
<dd><textarea id="txtDecoded" name="txtDecoded" cols="50" rows="5"></textarea></dd>
</dl>
</fieldset>
</form>

Phương Cần Thơ © 2016.