How to get the value of a key which contains unicode code point in a JSON?
I’m trying to build a program that extract data from a JSON and put it into a custom struct. The JSON contains keys like “foou00a0”, so I can’t just use Unmarshal
. I tried to use struct tags and it worked perfectly for “regular” tag but not when I use format like u...
.