Very simple. SKU returns the currency code ("price_currency_code" field). With that code you can retrieve the symbol using the Currency class.
See the code attached:
String currencyCode = skuObj.getString("price_currency_code");
currencySymbol = Currency.getInstance(currencyCode).getSymbol();