nibble

Is there a .NET data-type smaller than a byte?

How about a Nibble etc. ...

Best way to get two nibbles out of a byte in javascript?

I'm parsing a binary file in javascript that is storing two pieces of information per byte, one per nibble. The values are, of course, 0-16 and 0-16. In all other parts of the file format, each byte represents one piece of information, so I have been using the following to successfully get the number values I need: var num = str.charCo...