Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter Text widget doesn't recognize some characters, shows "?" instead

I'm trying to display text using the Text widget but it's not displaying properly. It shows the "?" for characters it cannot read. How can I fix this?

This is the result I want. enter image description here And this is the error. enter image description here

like image 703
An Tran Avatar asked Apr 22 '26 11:04

An Tran


1 Answers

It is generally due to the special characters not being supported by the charset / font. Hence, rendering as questions marks. Try some other font that has all those characters / glyphs.

like image 166
Yash Garg Avatar answered Apr 24 '26 00:04

Yash Garg