{ "topic": "unicode-hexcode", "input_types": [ "text" ], "input_labels": [ "Unicode" ], "input_values": [ "U+000A9" ], "type": "Convert", "title": "Unicode to Hex code", "description": "This converter converts given Unicode character to Hex code character.", "category": "HTML Conversion Tools", "preview": true, "function": "function myFunc(arr) {\n let unicodeString = arr[0];\n let decimalRepresentation = parseInt(unicodeString.slice(2), 16);\n return '&#x' + decimalRepresentation.toString(16) + ';';\n }", "op_label": "Hex Code", "explanation": "This tool converts the given Unicode to Hex code." }