Home > database >  How to diplay a hexadecimal emoji in flutter
How to diplay a hexadecimal emoji in flutter

Time:01-14

I would like to display the emoji 🤑 while only having the hexadecimal value of it.

var line = "testing is forever 🤑";

Text(
  "${line}",
  style: TextStyle(
      fontSize: 14,
      fontWeight: FontWeight.bold,
      color: Color(0xFF008080)),
),

CodePudding user response:

Try below code hope its helpful to you. Refer Unicode Charecter Image

Or in VS Code Pressed Window . and open the emoji picker box choose your wanted emoji and select it

Text(
   '           
  •  Tags:  
  • Related