Missing ÆØÅ and other special characters on mobile

Suddenly ÆØÅ and other nordic characters are gone on both android and IOS. I am using Unity GUI, any ideas?

you probably imported front with ascii subset only; see if importing with unicode charset helps

Imported font?. Its the build in Ariel? One should think that I stripped something away

hard to say, maybe, probably, i don’t know
but it seems that default gui font does not contain unicode characters )
if it is really the case you need custom font and, for example, assign it to GUI.skin.font in OnGUI() method
i did not notice until now, i use custom fonts

the default font is treated as ASCII only on mobile
hint: read the last line in docs for font component ( mac local file:///Applications/Unity/Unity.app/Contents/Documentation/Documentation/Components/class-Font.html )

Thanks that fixed it