#utf-8 #unicode #byte #convert #scalar #value #vice

unicode-utf8

一个将 utf-8 字节转换为 Unicode 标量值的库,反之亦然

3 个版本

0.1.3 2023年3月31日
0.1.2 2023年3月31日
0.1.1 2023年3月31日

#1864文本处理

每月32次 下载

MIT/Apache

6KB
134

一个将 utf-8 字节转换为 Unicode 标量值的库,反之亦然

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?}");
}

无运行时依赖