How to get the character encoding supported by a font programmatically?

Is there a way using C # to get the character encoding that Font supports?

+3
source share
1 answer

Short answer: No

There are no code pages in the .Net world: everything is done in Unicode.

A font is a collection of glyphs (a graphical representation of a character) mapped to a subset of Unicode codes (32-bit integers).

CLR UTF-16 System.Char( 16- ). , Unicode (0x00000080 ) 16- , UTF-16. [1] UTF-16 UTF-32, 32- .

[1] , . , .

0

Source: https://habr.com/ru/post/1785079/


All Articles