{ "topic": "html-hexcode", "input_types": [ "text" ], "input_labels": [ "HTML code" ], "input_values": [ "©" ], "type": "Convert", "title": "HTML code to Hex code", "description": "This converter converts given HTML code to Hex code.", "category": "HTML Conversion Tools", "preview": true, "function": "function myFunc(arr) {\n let htmlcodeString = arr[0];\n let hexcodeString = parseInt(htmlcodeString.replace(/[^0-9a-fA-F]/g, ''), 10).toString(16);\n return '&#x' + hexcodeString + ';';\n }", "op_label": "Hex code", "explanation": "This tool converts the given HTML code to Hex code." }