{ "topic": "css-unicode", "input_types": [ "text" ], "input_labels": [ "CSS Content code" ], "input_values": [ "\\00a9" ], "type": "Convert", "title": "CSS Content code to Unicode", "description": "This converter converts given CSS Content code to Unicode code point.", "category": "HTML Conversion Tools", "preview": true, "function": "function myFunc(arr) {\n let hexcodeString = arr[0];\n let unicodeString = hexcodeString.replace(/[^0-9a-fA-F]/g, '').toUpperCase();\n unicodeString = nZeroes(5-unicodeString.length) + unicodeString;\n return 'U+' + unicodeString;\n }", "op_label": "Unicode", "explanation": "This tool converts the given CSS Content code to Unicode." }