'In react app, how to set CSS font-face unicode-range to include chinese characters?

In my create-react-app, i have set this in the css

.App {
  text-align: center;
  font-family: 'Times New Roman', Arial;
}

@font-face {
  font-family: 'Times New Roman';
  src: local('Times New Roman');
  unicode-range: U+0020;
}

The chinese characters are appearing as Times New Roman, although the unicode-range is for space (U+0020), why is it so?

How do i set it up such that i could use the actual unicode of the chinese characters in the unicode-range?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source