I am trying to implement css counter in javascript. Till now i have seen that most of the counter has some intial hex value and increments by 1 accordingly. For cycle counters it repeats itself. but cjk-decimal is also type of number counter which has below hex values.
symbols: \3007 \4E00 \4E8C \4E09 \56DB \4E94 \516D \4E03 \516B \4E5D;
So is there any way to increment "\3007" to "\4E00" upto n in javascript to produce same characters in sequence.
Thanks in advance.