< published September 09, 2012

Stop Measuring Code in Bytes


Lately I’ve seen a lot of posts titled <Some Application> in X bytes of code!. This must stop.

Text can be encoded in many different ways. Historically, characters were stored as bytes (such as in an ASCII 7-bit format or one of its many derivatives), but in the modern world there are many different character encodings we must deal with. The modern Web commonly uses UTF-8, which is a variable-length encoding that stores characters as at least 1 octet (8 bits), but can be up to 4 octets. Due to many programs’ reliance on the ASCII encoding, it was designed to be backwards compatible with it. Tangent aside, this post is to demonstrate that the number of bytes in your code means absolutely nothing.

Let’s start by looking at some common encodings and how much space they use to store one character:

That’s right. An ambigous claim like 10 bytes of code can mean many different things. It can mean 10 characters, 2 characters, or something else entirely - 1 byte is not even guarenteed to be 8 bits!

I beg you, please use the term “characters” next time you want to brag about how small your code is.

(update: clarified some text to make it more accurate)

tl;dr use “characters”, not “bytes”, when referring to units of text.


All original content on this blog is licensed under CC BY-NC-SA 2.0. Support free information.