Convert numeric character reference to character

String after conversion

Numeric character reference (Character reference)

Character reference

This is a method of notating characters and symbols that cannot be directly described in documents such as HTML and XML using a combination of specific symbols and alphanumeric characters.

There are two types of character references in HTML: numeric character references and character entity references, depending on the notation method.

Here we convert the numeric character references in the input string back to the original characters.

Conversely, if you want to convert a string to numeric character reference notation, you can do so with Convert character to numeric character reference.

Numeric character reference

A numeric character reference is a way of specifying a character by its unicode character number.

There are decimal and hexadecimal notations.

For decimal numbers, use the notation "&#character number;", and for hexadecimal numbers, use the notation "&#x character number;".

Numeric character references are represented by character codes, so any character that has a character code can be represented by a numeric character reference.