utf8_onebyte_chars 1.0.0 copy "utf8_onebyte_chars: ^1.0.0" to clipboard
utf8_onebyte_chars: ^1.0.0 copied to clipboard

All utf8 one byte english letters and special characters. Used for input validation, random string generators etc.

example/example.dart

import 'dart:math';

import 'package:utf8_onebyte_chars/utf8_onebyte_chars.dart';

void main(){
  final Random random = Random.secure();
  final StringBuffer buffer = StringBuffer();
  for(int i=0; i<32; i++){
    buffer.write(oneByteCharacters[random.nextInt(oneByteCharacters_length)]);
  }
  print(buffer.toString());
}
0
likes
40
pub points
0%
popularity

Publisher

verified publisherdarkandjeweled.com

All utf8 one byte english letters and special characters. Used for input validation, random string generators etc.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

More

Packages that depend on utf8_onebyte_chars