In python, what is the escape sequence for the left-double quote Unicode character “
(U+201C)?
left_double_quote = "“"
print(ord(left_double_quote)) # prints `8220`
Note that 201C
is hexadecimal notation for the decimal number 8220
I tried somethings, but it did not work:
print("\x8220")
print("\x201C")
print("\0x201C")