diff --git a/Rust/Rust.md b/Rust/Rust.md index c9e70c1..299488c 100644 --- a/Rust/Rust.md +++ b/Rust/Rust.md @@ -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