I am using UTF-8
encoding on my website. Lately I have been storing chinese/spanish/russian names in my MySQL tables and then printing them with PHP on a page generated with a charset of UTF-8. The page works fine and I see all the letters correctly. However, I just realized that my table is set with latin1_swedish_ci
charset. How is it possible that even though I stored these names with latin1_swedish_ci
charset, serving them on my site with UTF-8 still shows them up correctly?
Thanks!
Joel