How to apply font-face only to a certain range of Unicode characters

Viewed 1440

A string queried from database look like this អាស័យដ្ឋានបច្ចុប្បន្ន 123, Street: National Road 3, ភូមិ ១, អូរឫស្សីទី ២, ៧មករា, ភ្នំពេញ តទៅនេះហៅថាភាគី«ក»។

I used font face font-family: 'Battambang', cursive;. The ASCII characters look good using that font, but the other characters inside the string look a bit cumbersome.

Rendering on browser, it looks like this:

View on Browser

If I remove font-face the non-Unicode characters look good, but the Unicode characters don’t.

Removing font-face

Therefore, is there any CSS trick I can use to apply the font only to certain Unicode characters but not to others?

1 Answers
Related