Help for this page

Select Code to Download


  1. or download this
    % uniquote -v t
    echo foo > \N{LATIN SMALL LETTER A WITH ACUTE}
    ...
    
    %  ls a? | uniquote -v
    a\N{COMBINING ACUTE ACCENT}
    
  2. or download this
    % perl -le 'print -e "\xE1" ? "Yes" : "No"'
    No
    
    % perl -MUnicode::Normalize -le 'print -e NFC("\xE1") ? "Yes" : "No"'
    Yes