79711739

Date: 2025-07-23 10:59:35
Score: 2
Natty:
Report link

That's standard percent URL encoding, in this case of UTF-8 encoded text. A URL cannot contain non-ASCII characters (actually, a subset thereof, different subsets for different parts of the URL). You cannot actually have "이윤희" in a URL. To embed arbitrary characters, you can percent encode them. This simply takes a single byte and encodes its hex value as %xx. The UTF-8 byte representation of "이윤희" is EC 9D B4 EC 9C A4 ED 9D AC, which is exactly what you're seeing in the URL.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Danica delacruz