On Mon, 14 May 2001, Dr.Keihany wrote:

> I'm looking for a software that can do this :
> [convert UTF-8 into HTML decimal NCRs]

Pipe the text through the following perl program:


#!/usr/bin/perl -p
use utf8;
s/./"&#".ord($&).";"/eg;


hope this helps,
-- 
Daniel Biddle <[EMAIL PROTECTED]>



Reply via email to