Eli5: Wtf is all the jargon in a games files

579 views

So if you go into some of the files for a game (or most applications I think) you find notepad files with endless pages of weird ass symbols. Wtf are they and why are they used?

In: Technology

5 Answers

Anonymous 0 Comments

every file on computer is stored in binary form. Notepad has an option to select the encoding (default is unicode, but you can select others, like ascii). What that means is that it will translate each group of 8 bits into a character. But if you open something that wasn’t supposed to be a text, for example, an executable file (.exe, or .elf) those bits aren’t characters, but instructions to the OS, so the result are random characters.

You are viewing 1 out of 5 answers, click here to view all answers.