urlencode('şarkı') == '%C5%9Fark%C4%B1'
if I name my image '%C5%9Fark%C4%B1.png'
in ftp, Can I be sure that all engines (most popular ones are google, yandex here) will exactly understand that visitor searched for 'şarkı'
which is matching with '%C5%9Fark%C4%B1.png'
at some image search result page?
note: I don't know if it's related however I utilize utf-8 in HTML, php connection language setting and also MySQL tables.
thanks
best regards
No, if you name your image '%C5%9Fark%C4%B1.png'
, it will be named so, and you would have to link to it using the name:
<img src="images/%25C5%259Fark%25C4%25B1.png" />
As you see, %
changed to %25
.
Name it as it is in ftp, then either urlencode()
or output it in utf-8, browsers will urlencode themselves.