Add Unicode characters notes

This commit is contained in:
Marcello 2021-10-08 22:53:37 +02:00
parent a7138f04db
commit e9425c19a4

View file

@ -155,6 +155,7 @@ Rust's `char` type is four bytes in size and represents a Unicode Scalar Value:
```rs
let c: char = 'C'; // SINGLE QUOTES
let c: char = '\u{261D}'; // Unicode Code Point U+261D
```
### String Types