Series of steps which reveal the bug:
- Click
Start REPL button
- Type
print("\N{digit nine}") and hit Enter
- See that
9 printed out
- Type
exit() and hit Enter (to exit the process)
- Click
Start REPL button again
- Type
print("\N{digit nine}") and hit Enter
- Watch the process hang and an error message print to the console (this is the bug)

Similar series of working steps (notice no \N{...} was used)
- Click
Start REPL button
- Type
print("9") and hit Enter
- See that
9 printed out
- Type
exit() and hit Enter (to exit the process)
- Click
Start REPL button again
- Type
print("9") and hint Enter
- See that
9 printed out

Context
This might seem like a strange bug to care about, but it's causing my Python pastebin site (which now runs Python code in-browser) to fail on some code examples. Specifically the "Run in Browser" button works the first time it's pressed but hangs the second time it's pressed. Here's a page that demonstrates the issue.