I am trying to implement a css counter in javascript. So far I have seen that most of the counter has some kind of internal hexadecimal value and increases by 1, respectively. For cycle counters, it repeats. but cjk-decimal is also a type of number counter that has hexadecimal values.
symbols: \3007 \4E00 \4E8C \4E09 \56DB \4E94 \516D \4E03 \516B \4E5D;
So, is there a way to increment "\ 3007" to "\ 4E00" to n in javascript to create the same characters in a sequence.
Thanks in advance.
source
share