How should this be coded?
currency_symbol = "€"; console.log(JSON.stringify(currency_symbol)); // "\u00E2\u0082\u00AC" currency_symbol = String.fromCharCode(128); console.log(JSON.stringify(currency_symbol)); // "\u0080"
@MaBe started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
How should this be coded?