From e9425c19a442fcb948c41c0215931d455ecc6625 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Fri, 8 Oct 2021 22:53:37 +0200 Subject: [PATCH] Add Unicode characters notes --- Rust/Rust.md | 1 + 1 file changed, 1 insertion(+) 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