This page will convert HTML special characters into HTML entities. The encoded text can then be inserted into another HTML document or blog posting and the reserved characters (such as < and &) will show up normally.
Enter your text in the form field below. The encoded result will be displayed in the lower field as you type.
Enter HTML to Encode:
HTML Encoded Result: (Click to Select All)
The HTML encoding is performed with this Javascript function:
/* encode html entities */See also: handy shell function for html encoding.
var char2entity = { '"' : '"', '<' : '<', '>' : '>', '&' : '&', "'" : ''' }; /* IE can't handle ' */
function encode_entities(str) {
var rv = '';
for (var i = 0; i < str.length; i++) {
var ch = str.charAt(i);
rv += char2entity[ch] || ch;
}
return rv;
}
Keywords: html encoding, html encoder
3 comments:
Very Cool!
Very nice, you help me a lot with that tutorial :)
Post a Comment