Tested tool guide
Tested browser tools
Checked August 16, 2026
What HTML Entity Lookup & Converter does, with a checked example
HTML lets you write any character as a text-safe reference: a named form like €, a decimal form like €, or a hex form like €. This tool searches the full set of 2,231 named character references from the WHATWG HTML standard, accepts all three spellings as well as a pasted character, and shows the decoded character, its Unicode code point, and every equivalent entity form, each copyable in one click. What users trip over: names are case-sensitive and the semicolon is required. © resolves, © does not, and € is the euro sign, not a control character.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
Decodes to the euro sign, U+20AC. The tool also lists the equivalent forms: €, €, and €, each ready to copy.
HTML numeric references to code points 128-159, the C1 control range, are remapped by the parsing rules to their Windows-1252 equivalents, so 128 becomes the euro sign, the same character the named form € produces. A plain Unicode lookup of 128 would have returned a control character.