Hi,
When I do this from the nL command line interpreter:
×tamp
"×tamp"
All good as expected.
When I am running it on a web server cgi script looking at it from my browser, I end up with this result:
How do I preserve ×tamp if I am making a string, say to include in a url?
When the result is ×tamp instead of ×tamp in the url, things break.
It seems like when seen "×", something is changing that to show × instead?
I have this at top of the cgi script:
Thanks very much!
			
			
			
				Try escaping the ampersand as &. × is the multiplication cross sign...
			
			
			
				Thank you Kirill,
made 
Thanks for the magic direction!