You are reading a single comment by @MaBe and its replies. Click here to read the full conversation.
  • How should this be coded?

    currency_symbol =  "€";
    console.log(JSON.stringify(currency_symb­ol));
    // "\u00E2\u0082\u00AC"
    
    currency_symbol =  String.fromCharCode(128);
    console.log(JSON.stringify(currency_symb­ol));
    // "\u0080"
    
About

Avatar for MaBe @MaBe started