How to convert 00B0 (degree sign) unicode character?
javascript, node.js
Solution
console.log('\u00B0'); // outputs ° in my chrome console
so basically: '\u00B0'
Problem
I have string 00B0 which is Unicode of degree sign how can I convert in to symbol? ``` var str = "00B0"; var degreeSign = convesion(str); console.log(degreeSign); ``` How it possible ?