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?
Try passing a
unicode
object, not astr
intorender_template()
, like so:You should decode that string. Try this: