May I ask list-style-type is the Unicode code of the solid circle symbol of disc?

there are several kinds of solid circle symbols:

this is 25cf
this is 2022

the following is the solid circle of the authentic list-style-type: disc

  • list items
  • list items
  • list items

it can be seen that its size is between 25cf and 2022. What is its Unicode code?


you use const content = document.createElement ('div');

    content.contentEditable = true;
    // markdown
    let timer;
    content.addEventListener('input', (event) => {
        clearTimeout(timer);

        timer = setTimeout(() => {
            // html 
            console.log(String.fromCharCode(event.target.innerHTML));
        }, 500);
        event.preventDefault();
    }, false);

there is really no introduction to this thing on the Internet, so find out everything in the range and look for it manually. Portal-go to JSRUN to see the effect , Portal-check out W3 specification

you can also consider putting characters into canvas and then selecting all circles

by similarity.

clipboard.png

Menu