jcombu 0.1.1
jcombu: ^0.1.1 copied to clipboard
Japanese charset convertor from SJIS/EUC/JIS(ISO-2022-JP) to Dart String.
example/jcombu_example.dart
import 'package:jcombu/jcombu.dart' as jcombu;
void main() {
final s = jcombu.convertJis([0x1b, 0x24, 0x40, 0x30, 0x21]);
print(s);
}