Here is a solutions supplied by another user of the tag component:
1.) com_tag; file tag.tasks.php
change on the line 143 ($this->fwd_Tmpl->call('listTagged', $tag, $rows, $pageNav, $this->params, $rel_tags)

change $tag -> urldecode($tag)
2. com_tag; file tag.api.php
change on the line 179
$tag = $this->db->safeEscape($tag); chnge on $tag = urldecode($this->db->safeEscape($tag))

change
See if it works for you.