# rust-base16 [![Build Status](https://travis-ci.org/WatchDG/rust-base16.svg?branch=master)](https://travis-ci.org/WatchDG/rust-base16) [![Build status](https://ci.appveyor.com/api/projects/status/4wu5mpr59448mwn4?svg=true)](https://ci.appveyor.com/project/WatchDG/rust-base16) [![Docs.rs](https://docs.rs/wdg-base16/badge.svg)](https://docs.rs/wdg-base16) [![Crates.io](https://img.shields.io/crates/v/wdg-base16.svg)](https://crates.io/crates/wdg-base16) [![License](https://img.shields.io/crates/l/wdg-base16.svg)](https://github.com/WatchDG/rust-base16/blob/master/LICENSE) ``` Rust extern crate wdg_base16; use wdg_base16::B16; use wdg_base16::B16Encode; use wdg_base16::B16Decode; fn main(){ println!("{}",B16::::encode(123456u64).unwrap()); println!("{}",B16::::decode(B16::::encode(123456u64)).unwrap()); } ```