1# ucs2-rs 2 3[](https://crates.io/crates/ucs2) 4[](https://docs.rs/ucs2) 5 6 7UCS-2 handling for Rust. 8 9Note that UCS-2 is the predecessor of [UTF-16](https://en.wikipedia.org/wiki/UTF-16). 10It is a **fixed-length** encoding, and it is used for things like [UEFI](http://www.uefi.org/). 11 12## History 13 14This crate arose out of the needs of the [`uefi-rs`](https://github.com/GabrielMajeri/uefi-rs) crate. 15The code was extracted and placed here for easier maintenance and easier reuse. 16 17Most of the initial code has been contributed by [FredrikAleksander](https://github.com/FredrikAleksander). 18 19## License 20 21Licensed under the Mozilla Public License 2.0. See the [LICENSE](LICENSE) file for the full text. 22