I added Url encoding to the Encoding page I created earlier today. Now instead of http://www.jasonhaley.com/blog I can put http://%77%77%77%2e%6a%61%73%6f%6e%68%61%6c%65%79%2e%63%6f%6d/blog.
So if you put the two of them together you can take a link like this:
<a href="http://jasonhaley.com/blog">My Blog</a>
to a string like this:
<a href="http://%77%77%77%2e%6a%61%73%6f%6e%68%61%6c%65%79%2e%63%6f%6d/blog">My Blog</a>
or for an image, something like this:
<img src="http://jasonhaley.com/images/home_header.jpg"/>
to a string like this:
<img src="http://%77%77%77%2e%6a%61%73%6f%6e%68%61%6c%65%79%2e%63%6f%6d/images/home_header.jpg"/>
If I get a chance tomorrow, I'll put something together to simplify a link and an image.