From f8aa97a2dee1fa87a35c60b1df04700b0170b970 Mon Sep 17 00:00:00 2001 From: dangerdyke Date: Mon, 4 Dec 2023 17:52:53 -0500 Subject: [PATCH] Change unfortunate char code in string example --- strings.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/strings.md b/strings.md index 12dea5ab..438836bc 100644 --- a/strings.md +++ b/strings.md @@ -169,11 +169,11 @@ value 255). Notice the Lisp reader can round-trip characters by name. * (char-code #\LATIN_CAPITAL_LETTER_E_WITH_GRAVE) 200 -* (code-char 1488) -#\HEBREW_LETTER_ALEF +* (code-char 2048) +#\SAMARITAN_LETTER_ALAF -* (char-code #\HEBREW_LETTER_ALEF) -1488 +* (char-code #\SAMARITAN_LETTER_ALAF) +2048 ~~~ Check out the UTF-8 Wikipedia article for the range of supported characters and