I am developing a web app and I want to use JSON objects with Unicode attributes such as the following:
a = {
ονομα:"hello"
}
And then use it like that
a.ονομα
Or maybe iterate over the object
I have tried it in the chrome console and it works fine but I would like to know if it is supported in other browsers and if it's a good practice.