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

zunda

$ echo 'ジャン( ᐛ )パァ' | bundle exec ruby unicodde-name.rb
"ジ" "KATAKANA LETTER ZI"
"ャ" "KATAKANA LETTER SMALL YA"
"ン" "KATAKANA LETTER N"
"(" "LEFT PARENTHESIS"
" " "SPACE"
"ᐛ" "CANADIAN SYLLABICS NASKAPI WAA"
" " "SPACE"
")" "RIGHT PARENTHESIS"
"ハ" "HALFWIDTH KATAKANA LETTER HA"
"゚" "HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK"
"ァ" "HALFWIDTH KATAKANA LETTER SMALL A"
"\n" nil

$ 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
$ cat Gemfile
# frozen_string_literal: true
source "https://rubygems.org"
gem "unicode-name", "~> 1.10"

rubygems.orgRubyGems.org | your community gem host