published: 13th of February 2022
A char in Rust represents a single unicode scalar value. A char is defined as a single character within single quotes eg: ('a') .
// Assign `东` to the `st` variable
let st = '东';
// Annotate the `char` type
let uff: char = '西';;
https://www.manning.com/books/rust-in-action