Skip to content

Instantly share code, notes, and snippets.

@meoow
Created August 9, 2014 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meoow/746fcd9ffc1ea7b022ad to your computer and use it in GitHub Desktop.
Save meoow/746fcd9ffc1ea7b022ad to your computer and use it in GitHub Desktop.
Convert Unicode Characters to ASCIIs
#!/usr/bin/env perl -i -n
use warnings;
use strict;
use Encode;
my $l=decode_utf8($_);
$l=~s/([^[:ascii:]])/"&#".ord($1).";"/ge;
print $l;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment