Online tool to HTML Entity encode your data. Your data is safe, will not leave your browser.
About HTML Entity encoder
HTML Entity Encoder is a simple and free online tool that quickly and easily encodes your data.
Common usage of HTML Entity encoding
- Your keyboard does not support the character you need to type. For example, many keyboards do not have em-dash or the copyright symbol.
- You want to make it explicit in the source code what is happening. For example, the
code is clearer than the corresponding white space character. - You need to escape HTML special characters like
<, &, or "
.
Examples
- Plain text:
<h1>Hello world!</h1>
Html Entity encoded:<h1>Hello world!</h1>