there are only numbered list and bullet list on ckeditor, am wondering can I get Alphabet list from somewhere as well ?

Comments

TinyMCE does have it.

 

That's cool that TinyMCE provides it out of the box!

Alphabetical lists are a type of ordered list, so if you want to keep using CKE5, you would have to set up some CSS styles and then provide the style to the dropdown "Styles" list button in the editor, in CKE5 "Styles" configuration something like (untested):

ol.alphabetical|Alphabetical list

And in your editor CSS file:

ol.alphabetical {
  type: A,
}