Within my .Json file, I have two different unicodes that appear like this:
\u30a2\u30eb\u30d0
\u0410\u043d\u0433\u0438\u043b\u044c\u044f
When the Javascript code accesses the .Json file using
const data = require('./countries.json');
it is able to decode the second unicode, but encounters an undefined
error when trying to decode the first one. Can someone shed light on why this is happening?