Reputation: 145
I've made a rss-feed in django and i wish to turn € into €
. I already use |escape
to escape link tags and such. But somehow |escape
doesn't work on €.
Does anybody now a way to also escape € ?
Upvotes: 2
Views: 223
Reputation: 54117
€ is a perfectly valid utf-8 character. You are almost certainly creating utf-8 output, therefore it doesn't need escaping.
Upvotes: 5