| Crates.io | unicode-utf8 |
| lib.rs | unicode-utf8 |
| version | 0.1.3 |
| created_at | 2023-03-31 08:22:24.164326+00 |
| updated_at | 2023-03-31 08:28:53.734055+00 |
| description | A library that converts utf-8 bytes to a unicode scalar value, and vice versa |
| homepage | |
| repository | https://github.com/xmh0511/char-from-utf8 |
| max_upload_size | |
| id | 826143 |
| size | 5,715 |
A library that converts utf-8 bytes to a unicode scalar value, and vice versa
use unicode_utf8::{FromUtf8,ToUtf8};
fn main(){
let r:char = char::from_utf8(&[0xE6,0x88,0x91]).unwrap();
println!("{r}");
let r = 0x6211u32.to_utf8().unwrap();
println!("{r:X?}");
}