Tested tool guide
Tested browser tools
Checked August 16, 2026
What HTML Character Reference does, with a checked example
HTML gives you three ways to write a character you cannot type: a named reference like ©, a decimal number like ©, or a hexadecimal number like ©. This tool is a searchable table covering all of them: enter any one form and it returns the character, its official name, the other two reference forms, and its Unicode code point. The surprise most people hit: names are case-sensitive and usually require the trailing semicolon. © renders ©, while © and &mdash without its semicolon stay as literal text.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
© - COPYRIGHT SIGN - © - © - © - U+00A9
These are all one character: the named reference © maps to code point U+00A9, and decimal 169 is exactly hexadecimal A9. One search returns every equivalent form on a single row, so it answers both what the character is and how to write it in HTML.