Fix bug with Chinese input in tags system (中文标签问题)

Tags system not work properly with Chinese character.

The bug is fixed now.

The problem is caused by the url encoding.

To fix the bug, we could decode the url into Chinese again.

Solution below

import urllib
tag = urllib.parse.unquote(url)