euc

Creator: coderz1093

Last updated:

Add to Cart

Description:

euc

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

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("おはよう世界"));
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.