windows1251 1.0.0 windows1251: ^1.0.0 copied to clipboard
Cyrillic windows-1251 (cp1251) encoding implementation for Dart.
// ignore_for_file: avoid_print
import 'package:windows1251/windows1251.dart';
void main() {
// 'Привет!'
print(windows1251.decode([207, 240, 232, 226, 229, 242, 33]));
// [207, 240, 232, 226, 229, 242, 33]
print(windows1251.encode('Привет!'));
}