Originally Posted By: Loki12583
You need to url encode the text to escape invalid characters:

$urlencode(Livbåten) will return Livb%C3%A5ten

Code:
alias urlencode return $regsubex($1-,/([^A-Z0-9])/gi,$+(%,$base($asc(\1),10,16)))


That worked brilliantly.
Thx Lokisan.