unicode 0.2.2 copy "unicode: ^0.2.2" to clipboard
unicode: ^0.2.2 copied to clipboard

discontinued
outdated

Unicode characters library auto generated from http://www.unicode.org.

unicode #

Unicode characters library auto generated from http://www.unicode.org.

Unicode Version 12.1.0

Example:

import 'package:unicode/unicode.dart' as unicode;

void main(List<String> args) {
  var ch = unicode.toRune('я');
  if (unicode.isLowercaseLetter(ch)) {
    print(char2Str(ch) + ' is lowercase letter');
  }

  ch = unicode.toRune('{');
  if (unicode.isOpenPunctuation(ch)) {
    print(char2Str(ch) + ' is open punctuation');
  }

  ch = unicode.toRune('©');
  if (unicode.isOtherSymbol(ch)) {
    print(char2Str(ch) + ' is other symbol');
  }

  ch = unicode.toRune('ǁ');
  if (unicode.isOtherLetter(ch)) {
    print(char2Str(ch) + ' is other letter');
  }
}

String char2Str(int c) {
  return String.fromCharCode(c);
}

7
likes
0
pub points
84%
popularity

Publisher

unverified uploader

Unicode characters library auto generated from http://www.unicode.org.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

lists

More

Packages that depend on unicode