I have an issue fetching from my Node.js application settings from Azure - characters are not shown same from Azure. For example using process.env.TEMPORARY_WARNING it results in: "Vissa anv„ndare upplever problem just nu." - but on Azure looks like below.
"Å" becomes "†",
"Ä" becomes "„",
"ö" becomes "”",
{
"name": "TEMPORARY_WARNING",
"value": "Vissa användare upplever problem just nu."
"slotSetting": true
}
I think I somehow need to set charset to UTF-8, but cannot find any solution to do so.