This isn't the first time I've seen this kind of image:
It seems that each icon is pointed to programmatically by using CSS (???). Is it called an icon set? While browsing a website I'm able to see those icons individually, but when I try to save them, they appear as a base64 encoded file and all the single images are together in the same png file. I mean, how does it work? Is there a way to split them? How are they used in a website?
Thank you!
It's known as an "CSS Image Sprite".
Links with more info:
It's a very common method in web development. Largely, because it helps limit HTTP requests. The image is downloaded to the users cache, just once, and then shifted around to only display the parts that are needed. This is much more efficient than downloading multiple images.