0

What is the encoding for OPT, TTF, EOT, and WOFF? I can't seem to find them.

Is there a list of encodings mapped to file types?

Quinn Keaveney
  • 1,248
  • 1
  • 17
  • 39

2 Answers2

5

The word “encoding” is typically used with character data. Since the TTF file format is based on bytes, it doesn’t have a “character encoding”. It does have some fields with character data, but then the question should be “what is the encoding of these fields inside the file?” — the file as a whole doesn’t have an encoding.

Roland Illig
  • 40,703
  • 10
  • 88
  • 121
1

They are binary files.

From here, for example...

A TrueType font is a binary file containing a number of tables.

Dylan Maxey
  • 976
  • 10
  • 9