Special characters in Flutter
问题 How can I add a special character (e.g., copyright sign instead of (c)) in the following example: Widget copyrightText = new Container( padding: const EdgeInsets.only(left: 32.0, right: 32.0), child: Text('2018 (c) Author's Name'), ); 回答1: You can add it as unicode like child: new Text('2018 \u00a9 Author's Name'), or child: new Text('2018 © Author's Name'), See also How can I write a 3 byte unicode character as string literal 回答2: Only one other thing to add. Dart/Flutter add another concept