Character
202307061625
Status: #idea
Tags: Rust
Character
- 4 bytes in size
- Represents a Unicode Scalar Value
- USVs range from
U+0000toU+D7FFandU+E000toU+10FFFFinclusive
fn main() {
let c = 'z';
let z: char = 'ℤ'; // with explicit type annotation
let heart_eyed_cat = '😻';
}