Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 18, 2022 21:08
Show Gist options
  • Save Deleplace/00e17c0bc5a9dd9fffe0d074b01dcff1 to your computer and use it in GitHub Desktop.
Save Deleplace/00e17c0bc5a9dd9fffe0d074b01dcff1 to your computer and use it in GitHub Desktop.
Number of bytes of a string
import 'dart:convert';
void main() {
var s = "Résumé";
var n = utf8.encode(s).length;
print("$n bytes");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment