HTML ASCII Encoder & Decoder is an online tool that converts each character in your text into an HTML numeric character entity (format: &#N;), and supports decoding them back to readable text.
An HTML numeric character entity represents a character using its Unicode code point in decimal, written as &#N;. For example:
Unlike named entities (such as < or &), numeric entities can represent any Unicode character and do not depend on the browser recognizing a specific entity name.
&#N; numeric entity form, ready for use in HTML documents.&#N; encoded text back into the original readable characters.&#N; numeric entity. The result appears in the output field.Named entities only cover a predefined set of characters and require browser support for their names. Numeric entities work for any Unicode character universally. This tool uses numeric entity format.
Yes. Browsers automatically parse &#N; into the corresponding character and display it correctly without any extra processing.
Fully supported. Chinese characters have larger Unicode code points (e.g., 中 = 20013), but the resulting numeric entities are valid HTML and render correctly in any Unicode-capable browser.

Loading...