From 817997704828e03e58503d7d2d92b4de6ad99c92 Mon Sep 17 00:00:00 2001 From: lhark Date: Thu, 3 Oct 2019 12:30:04 -0400 Subject: [PATCH] Add code tips & tricks file --- code | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 code diff --git a/code b/code new file mode 100644 index 0000000..e8c14df --- /dev/null +++ b/code @@ -0,0 +1,4 @@ +Python: + Unicode char from codepoint: + # https://stackoverflow.com/a/10715694 + chr(int("codepoint", 16))