Error:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xf0 in position 24: ordinal not in range(128)
So basically I have a Flask app where users fill a sign up form and it renders a new page.
Here's the code:
render_template('signUpSuccess.html', password="You should know, right? 😛")
It's not a serious project just a practice app I'm creating since I'm learning Python. I'm positive it's because of the emoji. I've tried other SO questions but just can't figure it out. I know the emoji is not necessary but It'd be nice to know how I can fix this in the future.