You can try to use Font Awesome for Turkish Lira. Some devices might not have the Turkish Lira code, therefore you need to implement a new way. Icon : http://fontawesome.io/icon/try/ after downloading font, create a custom text view for it(for easy use)
public class FontAwesome extends TextView {
public FontAwesome(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
public FontAwesome(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public FontAwesome(Context context) {
super(context);
init();
}
private void init() {
Typeface tf = Typeface.createFromAsset(getContext().getAssets(),
"/fontawesome.ttf");
setTypeface(tf);
}
}
Inside the xml file, create your textView like :
<your.package.FontAwesomeTextView
android:textColor="@android:color/white"
android:layout_width="match_parent"
android:text="Tutariniz : 30 "<!--  equals Turkish Lira Icon code -->
android:layout_height="wrap_content" />
You can follow the answer below :
How to use Font Awesome icon in android application?