emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Display of undisplayable characters: \U01F3A8 instead of diamond


From: Emanuel Berg
Subject: Re: Display of undisplayable characters: \U01F3A8 instead of diamond
Date: Fri, 26 Aug 2022 11:24:33 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

This seems to be the best attempt so far to print all chars.

Isn't the Linux VT supposed to be "512K"? But not all chars
show up ... maybe there are yet others to be found?

They show up in xterm tho, not the non-printables obviously,
but a lot more than in the console.

#! /bin/zsh

all-chars () {
    local i
    local chr
    for (( i=0; i < 512; i++)); do
        printf -v chr %04x $i
        printf "\u${chr}\n" 2> /dev/null
    done
}

-- 
underground experts united
https://dataswamp.org/~incal




reply via email to

[Prev in Thread] Current Thread [Next in Thread]