Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Solution: Show characters based on Unicode code-points

import sys

if len(sys.argv) != 3:
    exit(f"Usage: {sys.argv[0]} START END")

start, end = sys.argv[1:]
for decimal in range(int(start), int(end)+1):
    print(f"{decimal} {chr(decimal)}")

# Emojis:
# 127744 -
# 128506 - 128591