텍스트를 고정길이로 만들기
swift
String("0000000000000000\(id)".suffix(16))
kotlin
"0000000000000000${id}".takeLast(16)
JS
`0000000000000000${id}`.substr(-16)