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