First of all, Game not ASCII encoded, so you may need to set the Content-type page title to see the correct output:
header("Content-type: text/html; charset=utf-8");
Then you can convert it using this function
echo mb_convert_kana('Game', "R", 'UTF-8')
EDIT:
For MySQL, I could not find a converter to do the same. However, you can convert it manually at the Hex level, for example, you can get the word Game as follows
SELECT CHAR(0xefbca7, 0xefbd81, 0xefbd8d, 0xefbd85) as `Full Width`;
So, we can just write a mapping function in MySQL that replaces characters using this table
Abed hawa
source share