euc 1.0.6+8 copy "euc: ^1.0.6+8" to clipboard
euc: ^1.0.6+8 copied to clipboard

EUC-JP and Shift_JIS Encoding and Decoding Library for Dart Language.

euc #

EUC-JP and Shift_JIS Encoding and Decoding Library for Dart Language

Build Status

Examples #

import 'package:euc/euc.dart';
import 'package:euc/jis.dart';

main() {
  // EUC-JP Encoding and Decoding
  print(EucJP().decode([
    164, 170, 164, 207, 164, 232, 164, 166, 192, 164, 179, 166
  ]));

  print(EucJP().encode("おはよう世界"));

  // Shift_JIS Encoding and Decoding
  print(ShiftJIS().decode([
    130, 168, 130, 205, 130, 230, 130, 164, 144, 162, 138, 69
  ]));

  print(ShiftJIS().encode("おはよう世界"));
}
10
likes
130
pub points
84%
popularity

Publisher

unverified uploader

EUC-JP and Shift_JIS Encoding and Decoding Library for Dart Language.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on euc