카커쿠 <- combined form of Korean consonant and vowel
ㅋㅏㅋㅓㅋㅜ<- sepearated form of Korean consonant and vowel
if they're seperated, unicode value of each symbol will be differentiated
It doesn't happen often, but just like abbreviations like ASAP in English, Korean often uses consonant-only abbreviations.
For example, ㅋㅋㅋ is used similarly to lol and ㅜㅜ is used similarly to ;_; (sad emoji)
If you type ㅋ in a web address by itself, without combining it with any other consonants, it should be interpreted as Unicode 12619. However, when run it through python slugify, it changes to Unicode 4367. Is there any way to avoid this problem?
카커쿠 <- combined form of Korean consonant and vowel
ㅋㅏㅋㅓㅋㅜ<- sepearated form of Korean consonant and vowel
if they're seperated, unicode value of each symbol will be differentiated
It doesn't happen often, but just like abbreviations like ASAP in English, Korean often uses consonant-only abbreviations.
For example, ㅋㅋㅋ is used similarly to lol and ㅜㅜ is used similarly to ;_; (sad emoji)
If you type ㅋ in a web address by itself, without combining it with any other consonants, it should be interpreted as Unicode 12619. However, when run it through python slugify, it changes to Unicode 4367. Is there any way to avoid this problem?