Created
March 18, 2022 21:08
-
-
Save Deleplace/00e17c0bc5a9dd9fffe0d074b01dcff1 to your computer and use it in GitHub Desktop.
Number of bytes of a string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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