mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

みんなどうやってみつけてくるんだw

$ echo -n ቻンቻンがቺቻቺቻ | ruby unicodde-name.rb
"ቻ" "ETHIOPIC SYLLABLE CAA"
"ン" "HALFWIDTH KATAKANA LETTER N"
"ቻ" "ETHIOPIC SYLLABLE CAA"
"ン" "HALFWIDTH KATAKANA LETTER N"
"が" "HIRAGANA LETTER GA"
"ቺ" "ETHIOPIC SYLLABLE CI"
"ቻ" "ETHIOPIC SYLLABLE CAA"
"ቺ" "ETHIOPIC SYLLABLE CI"
"ቻ" "ETHIOPIC SYLLABLE CAA"

zunda

$ cat Gemfile
source "https://rubygems.org"
gem "unicode-name", "~> 1.10"
$ cat unicodde-name.rb
#!/usr/bin/ruby
require 'unicode/name'

ARGF.each do |line|
line.each_char do |c|
puts "#{c.inspect}\t#{(Unicode::Name.of c).inspect}"
end
end

rubygems.orgRubyGems.org | your community gem host