I have problem with some unicode (utf-8) character on Android. It's displayer as non existing (crossed out rectangle). It's there some way how to check if char exists?
I was trying to check it by FontFaceSet.check() ( https://developer.mozilla.org/en-US/docs/Web/API/FontFaceSet/check ) but it's not working :(
my code looks like:
document.fonts.check('700 24px / 36px Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif', '⮝');
where ⮝ is my char and long string is computed style from window.getComputedStyle( myElement, null ).getPropertyValue( 'font' )
It returns true, like character exists, but still this char cannot be show. What am I doing wrong?
