# Uint8 > Base utilities for unsigned 8-bit integers.
## Usage ```javascript var ns = require( '@stdlib/number/uint8/base' ); ``` #### ns Base utilities for unsigned 8-bit integers. ```javascript var o = ns; // returns {...} ```
- [`fromBinaryStringUint8( bstr )`][@stdlib/number/uint8/base/from-binary-string]: create an unsigned 8-bit integer from a literal bit representation. - [`toBinaryStringUint8( x )`][@stdlib/number/uint8/base/to-binary-string]: return a string giving the literal bit representation of an unsigned 8-bit integer.
## Examples ```javascript var objectKeys = require( '@stdlib/utils/keys' ); var ns = require( '@stdlib/number/uint8/base' ); console.log( objectKeys( ns ) ); ```